]> git.mxchange.org Git - friendica.git/blobdiff - include/api.php
Merge pull request #2453 from rabuzarus/1404_reworked_autocomplete
[friendica.git] / include / api.php
index 8d74a4612df70bf6ae7120bcc8f6ff5a4f2184b0..305a86ca13e7148de24210c2515ea675a1ffd9f0 100644 (file)
 
                $statushtml = trim(bbcode($body, false, false));
 
-               $search = array("<br>", "<blockquote>", "</blockquote>");
-               $replace = array("<br>\n", "\n<blockquote>", "</blockquote>\n");
+               $search = array("<br>", "<blockquote>", "</blockquote>",
+                               "<h1>", "</h1>", "<h2>", "</h2>",
+                               "<h3>", "</h3>", "<h4>", "</h4>",
+                               "<h5>", "</h5>", "<h6>", "</h6>");
+               $replace = array("<br>\n", "\n<blockquote>", "</blockquote>\n",
+                               "\n<h1>", "</h1>\n", "\n<h2>", "</h2>\n",
+                               "\n<h3>", "</h3>\n", "\n<h4>", "</h4>\n",
+                               "\n<h5>", "</h5>\n", "\n<h6>", "</h6>\n");
                $statushtml = str_replace($search, $replace, $statushtml);
 
                if ($item['title'] != "")