summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Schneider2022-09-08 14:25:29 +0200
committerChristian Schneider2022-09-08 14:25:29 +0200
commit6d912353c3cda34ee96915b5f3a62de41e14a754 (patch)
treed588a93b9ca6c03fa053c528598a92da7f14c456
parent0954d7dfc7d3a776bb3e7a5039c85015b8837c90 (diff)
downloaditools-6d912353c3cda34ee96915b5f3a62de41e14a754.tar.gz
itools-6d912353c3cda34ee96915b5f3a62de41e14a754.tar.bz2
itools-6d912353c3cda34ee96915b5f3a62de41e14a754.zip
Allow html list tags (ol/ul/li) in it_html::sanitize (e.g. for Freizeit descriptions)
-rw-r--r--it_html.class2
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class
index 5a2fb68..d7e1db3 100644
--- a/it_html.class
+++ b/it_html.class
@@ -409,7 +409,7 @@ static function sanitize($html)
$html = it::replace(array('[\0\s]+' => " "), $html); # \s also matches \r and \n
$urlpattern = 'https?://[^">]+';
- if ($tag = it::match("(.*?)<(div|p|i|b|strong|h[1-6])\b[^>]*>(.*?)</\\2>(.*)", $html))
+ if ($tag = it::match("(.*?)<(div|p|ol|ul|li|i|b|strong|h[1-6])\b[^>]*>(.*?)</\\2>(.*)", $html))
{
# Simple tags with content, no attributes kept
list($head, $tagname, $content, $tail) = $tag;