sanitize: strip comments and cdata sections
This commit is contained in:
parent
c7fe1b4e9e
commit
bed064442a
|
@ -2691,11 +2691,7 @@
|
|||
|
||||
$res = trim($str); if (!$res) return '';
|
||||
|
||||
# we don't support CDATA sections in articles, they break our own escaping
|
||||
$res = preg_replace("/\[\[CDATA/", "", $res);
|
||||
$res = preg_replace("/\]\]\>/", "", $res);
|
||||
|
||||
$config = array('safe' => 1, 'deny_attribute' => 'style');
|
||||
$config = array('safe' => 1, 'deny_attribute' => 'style', 'comment' => 1, 'cdata' => 1);
|
||||
$res = htmLawed($res, $config);
|
||||
|
||||
if (get_pref($link, "STRIP_IMAGES", $owner)) {
|
||||
|
|
Loading…
Reference in New Issue