Commit 96729 by goba

#212285 by wrwrwr: hr should be treated as a block level tag

--- modules/filter/filter.module        2008/01/17 21:50:59     1.203
+++ modules/filter/filter.module        2008/01/21 15:08:24     1.204
@@ -1,5 +1,5 @@
 <?php
-// $Id: filter.module,v 1.202 2008/01/10 22:47:17 goba Exp $
+// $Id: filter.module,v 1.203 2008/01/17 21:50:59 goba Exp $
 
 /**
  * @file
@@ -865,7 +865,7 @@
  */
 function _filter_autop($text) {
   // All block level tags
-  $block = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|p|h[1-6])';
+  $block = '(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|blockquote|address|p|h[1-6]|hr)';
 
   // Split at <pre>, <script>, <style> and </pre>, </script>, </style> tags.
   // We don't apply any processing to the contents of these tags to avoid messing
No votes yet