From 2e75e37c932266f71c515839d1044e4677760c1f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Thu, 7 Aug 2014 21:55:17 +0200 Subject: [PATCH] There seems to be problems with encoding - this should fix it. --- include/bbcode.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bbcode.php b/include/bbcode.php index 571809c3b5..df2c7101bd 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -1076,7 +1076,7 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true, $simplehtml = fal $doc = new DOMDocument(); $doc->preserveWhiteSpace = false; - //$Text = mb_convert_encoding($Text, 'HTML-ENTITIES', "UTF-8"); + $Text = mb_convert_encoding($Text, 'HTML-ENTITIES', "UTF-8"); $doctype = ''; $encoding = '';