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

git-svn-id: http://svn.automattic.com/wordpress/trunk@5787 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2007-07-06 22:47:24 +00:00
parent d5842abd35
commit b721942f26

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