Index: trunk/phase3/includes/parser/Parser.php |
— | — | @@ -4678,7 +4678,7 @@ |
4679 | 4679 | do { |
4680 | 4680 | $oldText = $text; |
4681 | 4681 | $text = $this->general->replace( $text ); |
4682 | | - } while ( $text != $oldText ); |
| 4682 | + } while ( $text !== $oldText ); |
4683 | 4683 | wfProfileOut( __METHOD__ ); |
4684 | 4684 | return $text; |
4685 | 4685 | } |
— | — | @@ -4688,7 +4688,7 @@ |
4689 | 4689 | do { |
4690 | 4690 | $oldText = $text; |
4691 | 4691 | $text = $this->nowiki->replace( $text ); |
4692 | | - } while ( $text != $oldText ); |
| 4692 | + } while ( $text !== $oldText ); |
4693 | 4693 | wfProfileOut( __METHOD__ ); |
4694 | 4694 | return $text; |
4695 | 4695 | } |
— | — | @@ -4699,7 +4699,7 @@ |
4700 | 4700 | $oldText = $text; |
4701 | 4701 | $text = $this->general->replace( $text ); |
4702 | 4702 | $text = $this->nowiki->replace( $text ); |
4703 | | - } while ( $text != $oldText ); |
| 4703 | + } while ( $text !== $oldText ); |
4704 | 4704 | wfProfileOut( __METHOD__ ); |
4705 | 4705 | return $text; |
4706 | 4706 | } |