From a2109a0de7ff64bab9a029c2612e3a87ed4aa547 Mon Sep 17 00:00:00 2001
From: Peter Rotich <peter@enhancesoft.com>
Date: Wed, 23 Oct 2013 19:37:10 +0000
Subject: [PATCH] Fix syntax error :(

---
 include/class.format.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/class.format.php b/include/class.format.php
index f86982a38..6cf6df89c 100644
--- a/include/class.format.php
+++ b/include/class.format.php
@@ -151,7 +151,7 @@ class Format {
 
         # Try simple html2text  - insert line breaks after new line tags.
         $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"),
                 $html);
 
-- 
GitLab