remove special character

This commit is contained in:
xiaomlove
2023-05-24 02:00:18 +08:00
parent fa95279e66
commit 503ca22741
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
<?php
defined('VERSION_NUMBER') || define('VERSION_NUMBER', '1.8.4');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2023-05-20');
defined('RELEASE_DATE') || define('RELEASE_DATE', '2023-05-24');
defined('IN_TRACKER') || define('IN_TRACKER', false);
defined('PROJECTNAME') || define("PROJECTNAME","NexusPHP");
defined('NEXUSPHPURL') || define("NEXUSPHPURL","https://nexusphp.org");

View File

@@ -460,7 +460,7 @@ function format_comment($text, $strip_html = true, $xssclean = false, $newtab =
}
$j++;
}
return $s;
return str_replace('', '', $s);
}
function highlight($search,$subject,$hlstart='<b><font class="striking">',$hlend="</font></b>")