in your functions.php
find
}
$text = str_replace("[hr]", "<hr>", $text);
}
if ($html !== 2) {
$text = nl2br(trim($text));
$text = replace_url($text);
}
if ($word_wrap && $text != "") {
$text = preg_replace("/([^\n\r ?&\.\/<>\"\\-]{".$word_wrap."})/i", " \\1\n", $text);
}
$text = str_replace("\n", "<br />", $text);
$text = str_replace("\\'", "'", $text);
$text = str_replace("\\\"", """, $text);
return replace_badwords(stripslashes($text));
}
replace with
}
$text = str_replace("[hr]", "<hr>", $text);
}
if ($html !== 2) {
$text = nl2br(trim($text));
$text = replace_url($text);
}
if ($word_wrap && $text != "") {
$text = preg_replace("/([^\n\r ?&\.\/<>\"\\-]{".$word_wrap."})/i", " \\1\n", $text);
$text = replace_badwords($text);
}
$text = str_replace("\n", "<br />", $text);
$text = str_replace("\\'", "'", $text);
$text = str_replace("\\\"", """, $text);
return $text;
}