use 
 when new lines are a must if minify_html is enabled
This commit is contained in:
parent
3a16a570dd
commit
0ac75577ac
@ -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>', $body);
|
||||
|
||||
if($config['minify_html'])
|
||||
$body = str_replace("\n", '
', $body);
|
||||
|
||||
return $body . "\n";
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user