Modified:
trunk/htdocs/system/classes/format.php
Log:
Remove del and ins from block tags in autop(). Issue #365, thanks, geoffers.
Modified: trunk/htdocs/system/classes/format.php
==============================================================================
--- trunk/htdocs/system/classes/format.php (original)
+++ trunk/htdocs/system/classes/format.php Thu Aug 16 19:14:55 2007
@@ -108,7 +108,7 @@
**/
public function autop($value)
{
- $regex = '/(<\\s*(address|blockquote|del|div|h[1-6]|hr|ins|p|pre|ul|ol|dl|table)[^>]*?'.'>.*?<\\s*\/\\s*\\2\\s*>)/sm';
+ $regex = '/(<\\s*(address|blockquote|div|h[1-6]|hr|p|pre|ul|ol|dl|table)[^>]*?'.'>.*?<\\s*\/\\s*\\2\\s*>)/sm';
$target = str_replace("\r\n", "\n", $value);
$target = preg_replace('/<\\s*br\\s*\/\\s*>(\s*)/m', "\n", $target);