Index: trunk/phase3/includes/Article.php |
— | — | @@ -899,7 +899,7 @@ |
900 | 900 | |
901 | 901 | # check if we're displaying a [[User talk:x.x.x.x]] anonymous talk page |
902 | 902 | if( $ns == NS_USER_TALK && |
903 | | - User::isIP( $this->mTitle->getText() ) ) { |
| 903 | + IP::isValid( $this->mTitle->getText() ) ) { |
904 | 904 | $wgOut->addWikiMsg('anontalkpagetext'); |
905 | 905 | } |
906 | 906 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -179,6 +179,7 @@ |
180 | 180 | * (bug 13705) Don't show rollback link in page history if called with dir=prev |
181 | 181 | * (bug 13708) Don't set "Search results" title when loading Special:Search |
182 | 182 | without query |
| 183 | +* (bug 13736) Don't show MediaWiki:Anontalkpagetext on non-existant IP addresses |
183 | 184 | |
184 | 185 | === API changes in 1.13 === |
185 | 186 | |