Skip htmlentities on import

This commit is contained in:
phl0
2025-01-16 13:04:13 +01:00
parent 69b83a7d7b
commit 5b1a5d9696

View File

@@ -510,7 +510,7 @@ class Eqslmethods_model extends CI_Model {
'COL_EQSL_QSLRDATE' => $eqsl_qslrdate ?? date('Y-m-d'), // eQSL gives a date now. Use current date as fallback only
'COL_EQSL_QSL_RCVD' => $qsl_status,
// Incoming QSLMSG to be stored in QSLMSG_RCVD
'COL_QSLMSG_RCVD' => htmlentities($qslmsg ?? '')
'COL_QSLMSG_RCVD' => $qslmsg ?? ''
);
$this->db->where('COL_TIME_ON >= DATE_ADD(DATE_FORMAT("' . $datetime . '", \'%Y-%m-%d %H:%i\' ), INTERVAL -15 MINUTE )');