Comments: Include comment_content with html and without in blacklist_keys comparison.

After [38047], also include the comment_content with html in the preg_match against blacklist keys to match urls.

Props ocean90.
Fixes #37208.

git-svn-id: https://develop.svn.wordpress.org/trunk@38048 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Rachel Baker 2016-07-13 14:04:10 +00:00
parent d6eac6593c
commit 224aecf240
2 changed files with 22 additions and 0 deletions

View File

@ -1076,6 +1076,7 @@ function wp_blacklist_check($author, $email, $url, $comment, $user_ip, $user_age
preg_match($pattern, $author)
|| preg_match($pattern, $email)
|| preg_match($pattern, $url)
|| preg_match($pattern, $comment)
|| preg_match($pattern, $comment_without_html)
|| preg_match($pattern, $user_ip)
|| preg_match($pattern, $user_agent)

View File

@ -20,6 +20,9 @@ class Tests_WP_Blacklist_Check extends WP_UnitTestCase {
$this->assertTrue( $result );
}
/**
* @ticket 37208
*/
public function test_should_return_true_when_content_with_html_matches_blacklist_keys() {
$author = 'Sting';
$author_email = 'sting@example.com';
@ -65,6 +68,24 @@ class Tests_WP_Blacklist_Check extends WP_UnitTestCase {
$this->assertTrue( $result );
}
/**
* @ticket 37208
*/
public function test_should_return_true_when_link_matches_blacklist_keys() {
$author = 'Rainier Wolfcastle';
$author_email = 'rainier@wolfcastle.com';
$author_url = 'http://example.com';
$comment = 'We go on TV and sing, <a href="http://example.com/spam/>sing</a>, sing.';
$author_ip = '192.168.0.1';
$user_agent = '';
update_option( 'blacklist_keys',"/spam/" );
$result = wp_blacklist_check( $author, $author_email, $author_url, $comment, $author_ip, $user_agent );
$this->assertTrue( $result );
}
public function test_should_return_false_when_no_match() {
$author = 'Krusty the Clown';
$author_email = 'krusty@example.com';