EndCommonPurify event

This commit is contained in:
hannes 2016-01-11 20:54:19 +00:00
parent c826fe0af4
commit 8d331b0f35

View File

@ -593,7 +593,10 @@ function common_purify($html)
$html = common_remove_unicode_formatting($html);
return htmLawed($html, $config);
$purified = htmLawed($html, $config);
Event::handle('EndCommonPurify', array(&$purified));
return $purified;
}
function common_remove_unicode_formatting($text)
@ -2458,4 +2461,4 @@ function html_sprintf()
function _ve($var)
{
return var_export($var, true);
}
}