Pass extra args to pre_kses hook. Props mdawaffe. see #4409

git-svn-id: https://develop.svn.wordpress.org/trunk@5787 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2007-07-06 22:47:24 +00:00
parent 31d63a4c82
commit 13d390e40f
1 changed files with 1 additions and 1 deletions

View File

@ -240,7 +240,7 @@ function wp_kses_hook($string, $allowed_html, $allowed_protocols)
# You add any kses hooks here.
###############################################################################
{
$string = apply_filters( 'pre_kses', $string );
$string = apply_filters('pre_kses', $string, $allowed_html, $allowed_protocols);
return $string;
} # function wp_kses_hook