Index: trunk/phase3/includes/Article.php |
— | — | @@ -699,7 +699,7 @@ |
700 | 700 | if ( $text === false ) { |
701 | 701 | $text = $this->getRawText(); |
702 | 702 | } |
703 | | - return in_string( ',', $text ); |
| 703 | + return strpos( $text, ',' ) !== false; |
704 | 704 | case 'link': |
705 | 705 | if ( $editInfo ) { |
706 | 706 | // ParserOutput::getLinks() is a 2D array of page links, so |