Make WordPress Core


Ignore:
Timestamp:
03/30/2006 11:12:54 PM (20 years ago)
Author:
ryan
Message:

Ref checks from mdawaffe.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/classes.php

    r3639 r3665  
    4141                                                continue;
    4242                                        $fulltext = strtolower($comment->email.' '.$comment->url.' '.$comment->ip.' '.$comment->text);
    43                                         if( strpos( $fulltext, strtolower($word) ) != FALSE ) {
     43                                        if( false !== strpos( $fulltext, strtolower($word) ) ) {
    4444                                                $this->found_comments[] = $comment->ID;
    4545                                                break;
Note: See TracChangeset for help on using the changeset viewer.