diff options
-rw-r--r-- | it_html.class | 2 |
1 files changed, 1 insertions, 1 deletions
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'] ? "<span style='background:#8FF'>$result</span>" : $result; + return $GLOBALS['debug_q'] ? "<span style='background:#8FF'>$result</span>" : it::replace(array('<(div|p|i|b|a)></\1>' => ""), $result); # remove empty tags } /** |