Fix xss entitiy decoding

release-0.6
thomascube 16 years ago
parent dc5b83d188
commit 85a9130647

@ -643,8 +643,8 @@ function rcmail_mod_css_styles($source, $container_id, $base_url = '')
function rcmail_xss_entitiy_decode($content) function rcmail_xss_entitiy_decode($content)
{ {
$out = html_entity_decode(html_entity_decode($content)); $out = html_entity_decode(html_entity_decode($content));
$out = preg_replace('/\\\00([a-z0-9]{2})/ie', "chr(hexdec('\\1'))", $out); $out = preg_replace('/\\\([a-z0-9]{4})/ie', "chr(hexdec('\\1'))", $out);
$out = preg_replace('#/\*.+\*/#Um', '', $out); $out = preg_replace('#/\*.*\*/#Um', '', $out);
return $out; return $out;
} }

Loading…
Cancel
Save