trailing \n after inline replying with minify_html enabled

This commit is contained in:
Michael Save 2012-01-07 11:55:25 +11:00
parent 0ac75577ac
commit ef5869014f

View File

@ -1284,10 +1284,12 @@
$body = preg_replace("/(^|\n)/", '$1>', $body);
$body .= "\n";
if($config['minify_html'])
$body = str_replace("\n", '
', $body);
return $body . "\n";
return $body;
}
function markup_url($matches) {