diff --git a/b2-include/b2functions.php b/b2-include/b2functions.php index 554352cc5..972a3908a 100644 --- a/b2-include/b2functions.php +++ b/b2-include/b2functions.php @@ -225,6 +225,10 @@ function convert_chars($content,$flag="html") { // html/unicode entities output, # $content = str_replace("&","&",$content); $content = strtr($content, $b2_htmltrans); + return $content; + + // the following is the slowest. code. ever. + /* for ($i=0; $i","
",$newcontent); return($newcontent); + */ } function convert_bbcode($content) {