Skip to content
Snippets Groups Projects
Commit a2109a0d authored by Peter Rotich's avatar Peter Rotich
Browse files

Fix syntax error :(

parent 0fc28101
Branches
Tags
No related merge requests found
...@@ -151,7 +151,7 @@ class Format { ...@@ -151,7 +151,7 @@ class Format {
# Try simple html2text - insert line breaks after new line tags. # Try simple html2text - insert line breaks after new line tags.
$html = preg_replace( $html = preg_replace(
array(':<br ?/?\>:i', ':(</div>)\s*:i', ':(</p>)\s*:i') array(':<br ?/?\>:i', ':(</div>)\s*:i', ':(</p>)\s*:i'),
array("\n", "$1\n", "$1\n\n"), array("\n", "$1\n", "$1\n\n"),
$html); $html);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment