Browse Source

use 
 when new lines are a must if minify_html is enabled

pull/40/head
Michael Save 12 years ago
parent
commit
0ac75577ac
  1. 5
      inc/functions.php

5
inc/functions.php

@ -1276,12 +1276,17 @@
}
function quote($body, $quote=true) {
global $config;
$body = str_replace('<br/>', "\n", $body);
$body = strip_tags($body);
$body = preg_replace("/(^|\n)/", '$1&gt;', $body);
if($config['minify_html'])
$body = str_replace("\n", '&#010;', $body);
return $body . "\n";
}

Loading…
Cancel
Save