Fix a really disturbing comment

(cherry picked from commit 823c0434eb)
This commit is contained in:
Xanthor 2019-05-17 03:23:12 +00:00 committed by Mario
parent aa120e0478
commit af2b263bc7

View File

@ -219,8 +219,7 @@ function html2bbcode($message)
$message = $doc->saveHTML();
// I'm removing something really disturbing
// Don't know exactly what it is
// I'm removing the UTF-8 encoding of a NO-BREAK SPACE codepoint
$message = str_replace(chr(194).chr(160), ' ', $message);
$message = str_replace(" ", " ", $message);