From e21ed9ee1bbd7134e3539e849de2e36d0ac076f5 Mon Sep 17 00:00:00 2001
From: Urban Müller
Date: Wed, 27 Mar 2013 16:27:16 +0000
Subject: remove empty tags in ::sanitize
---
it_html.class | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/it_html.class b/it_html.class
index 95c33fc..e874ef4 100644
--- a/it_html.class
+++ b/it_html.class
@@ -457,7 +457,7 @@ function sanitize($html)
else
$result = it::replace(array('&(#\d+;)' => '&$1'), it_html::Q(html_entity_decode(strip_tags($html), ENT_COMPAT, $charset)));
- return $GLOBALS['debug_q'] ? "$result" : $result;
+ return $GLOBALS['debug_q'] ? "$result" : it::replace(array('<(div|p|i|b|a)>\1>' => ""), $result); # remove empty tags
}
/**
--
cgit v1.2.3