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
+1 -1
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>")