forgot we need access to $html too

This commit is contained in:
hannes 2016-01-11 20:58:34 +00:00
parent 8d331b0f35
commit a1b509bb0b
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ function common_purify($html)
$html = common_remove_unicode_formatting($html);
$purified = htmLawed($html, $config);
Event::handle('EndCommonPurify', array(&$purified));
Event::handle('EndCommonPurify', array(&$purified, $html));
return $purified;
}