diff options
Diffstat (limited to 'html.class')
-rw-r--r-- | html.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -235,7 +235,7 @@ function span($args) function sanitize($html) { $result = ""; - $html = it::replace('[\0\n\r\s]+' => " ", $html); + $html = it::replace(array('[\0\n\r\s]+' => " "), $html); $urlpattern = 'https?://[^">]+'; if ($tag = it::match("(.*)<(div|p|i|b)[^>]*>(.*?)</\\2>(.*)", $html)) |