From: Michael Vogel Date: Thu, 7 Aug 2014 19:55:17 +0000 (+0200) Subject: There seems to be problems with encoding - this should fix it. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2e75e37c932266f71c515839d1044e4677760c1f;p=friendica.git There seems to be problems with encoding - this should fix it. --- 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 = '';