fixed html code issue with forum. no more ugly ";gt" stuff

This commit is contained in:
MichaelYick 2022-07-24 10:23:12 +00:00
parent 7d2c48387a
commit 964525efae

View File

@ -101,7 +101,7 @@ class ForumTheme extends Themelet
foreach ($posts as $post) {
$current_post++;
$message = $post["message"];
$message = mb_convert_encoding($post["message"], "UTF-8", "HTML-ENTITIES");
$tfe = new TextFormattingEvent($message);
send_event($tfe);