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 ) {
|
||||
if( $comment->approved == 1 ) {
|
||||
foreach( $this->spam_words as $word ) {
|
||||
if ( empty( $word ) )
|
||||
continue;
|
||||
$fulltext = strtolower($comment->email.' '.$comment->url.' '.$comment->ip.' '.$comment->text);
|
||||
if( strpos( $fulltext, strtolower(trim($word)) ) != FALSE ) {
|
||||
$this->found_comments[] = $comment->ID;
|
||||
|
|
Loading…
Reference in New Issue