Browse Source

trailing \n after inline replying with minify_html enabled

pull/40/head
Michael Save 12 years ago
parent
commit
ef5869014f
  1. 4
      inc/functions.php

4
inc/functions.php

@ -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) {

Loading…
Cancel
Save