Remove/Replace more of that eQSL-Crap

This commit is contained in:
int2001
2025-03-14 12:08:58 +00:00
parent 2285289cce
commit 873f3d14a2

View File

@@ -209,7 +209,7 @@ class Eqslmethods_model extends CI_Model {
// adding qslmsg if it isn't blank
if ($qsl['COL_QSLMSG'] != '') {
$qsl['COL_QSLMSG'] = str_replace(array(chr(10), chr(13),'<','>',':'), array(' ', ' ','','',' '), $qsl['COL_QSLMSG']);
$qsl['COL_QSLMSG'] = str_replace(array(chr(10), chr(13),'<','>',':','_'), array(' ', ' ','','',' ',' '), $qsl['COL_QSLMSG']);
$adif .= "%3C";
$adif .= "QSLMSG";
$adif .= "%3A";
@@ -217,6 +217,7 @@ class Eqslmethods_model extends CI_Model {
$adif .= "%3E";
$adif .= str_replace('&', '%26', $qsl['COL_QSLMSG']);
$adif .= str_replace('?', '%3F', $qsl['COL_QSLMSG']);
$adif .= str_replace('-', '%2D', $qsl['COL_QSLMSG']);
$adif .= "%20";
}