mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-17 03:56:07 +00:00
git-svn-id: http://svn.automattic.com/wordpress/trunk@2261 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0e377a7ca7
commit
4ebdf7232c
@ -679,6 +679,8 @@ class retrospam_mgr {
|
|||||||
foreach( $this->comment_list as $comment ) {
|
foreach( $this->comment_list as $comment ) {
|
||||||
if( $comment->approved == 1 ) {
|
if( $comment->approved == 1 ) {
|
||||||
foreach( $this->spam_words as $word ) {
|
foreach( $this->spam_words as $word ) {
|
||||||
|
if ( empty( $word ) )
|
||||||
|
continue;
|
||||||
$fulltext = strtolower($comment->email.' '.$comment->url.' '.$comment->ip.' '.$comment->text);
|
$fulltext = strtolower($comment->email.' '.$comment->url.' '.$comment->ip.' '.$comment->text);
|
||||||
if( strpos( $fulltext, strtolower(trim($word)) ) != FALSE ) {
|
if( strpos( $fulltext, strtolower(trim($word)) ) != FALSE ) {
|
||||||
$this->found_comments[] = $comment->ID;
|
$this->found_comments[] = $comment->ID;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user