Do over to avoid write context warning.

git-svn-id: http://svn.automattic.com/wordpress/trunk@2892 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2005-09-19 02:49:53 +00:00
parent cf9735284d
commit e0bffdaf03
1 changed files with 3 additions and 2 deletions

View File

@ -724,10 +724,11 @@ class retrospam_mgr {
foreach( $this->comment_list as $comment ) {
if( $comment->approved == 1 ) {
foreach( $this->spam_words as $word ) {
if ( empty( trim($word) ) )
$word = trim($word);
if ( empty( $word ) )
continue;
$fulltext = strtolower($comment->email.' '.$comment->url.' '.$comment->ip.' '.$comment->text);
if( strpos( $fulltext, strtolower(trim($word)) ) != FALSE ) {
if( strpos( $fulltext, strtolower($word) ) != FALSE ) {
$this->found_comments[] = $comment->ID;
break;
}