diff options
author | Christian Schneider | 2007-02-16 13:06:03 +0000 |
---|---|---|
committer | Christian Schneider | 2007-02-16 13:06:03 +0000 |
commit | 815f464aef500c1afaf885a1490eafa931461cd5 (patch) | |
tree | cf63e00cc5a41957772368779c5e03a2432bd52d | |
parent | 3dd1e42e08611a8eee7506585cf1946c9469cf9d (diff) | |
download | itools-815f464aef500c1afaf885a1490eafa931461cd5.tar.gz itools-815f464aef500c1afaf885a1490eafa931461cd5.tar.bz2 itools-815f464aef500c1afaf885a1490eafa931461cd5.zip |
Fix sanitize when used without it_html instantiaced (no global Q())
-rw-r--r-- | html.class | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -263,7 +263,7 @@ function sanitize($html) $result .= it_html::sanitize($head) . "<$tagname />" . it_html::sanitize($tail); } else - $result = Q(html_entity_decode(strip_tags($html))); + $result = it_html::Q(html_entity_decode(strip_tags($html))); return $result; } |