Comments: Improve comment content filtering.

Merges [44842] to the 3.8 branch.
Built from https://develop.svn.wordpress.org/branches/3.8@44856


git-svn-id: http://core.svn.wordpress.org/branches/3.8@44688 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2019-03-12 22:51:11 +00:00
parent 9aa6e875dd
commit 5a03d23f2c
2 changed files with 4 additions and 0 deletions

View File

@ -790,6 +790,8 @@ function wp_ajax_replyto_comment( $action ) {
if ( wp_create_nonce( 'unfiltered-html-comment' ) != $_POST['_wp_unfiltered_html_comment'] ) {
kses_remove_filters(); // start with a clean slate
kses_init_filters(); // set up the filters
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
add_filter( 'pre_comment_content', 'wp_filter_kses' );
}
}
} else {

View File

@ -102,6 +102,8 @@ if ( $user->exists() ) {
) {
kses_remove_filters(); // start with a clean slate
kses_init_filters(); // set up the filters
remove_filter( 'pre_comment_content', 'wp_filter_post_kses' );
add_filter( 'pre_comment_content', 'wp_filter_kses' );
}
}
} else {