Index: trunk/phase3/skins/Vector.php |
— | — | @@ -140,7 +140,7 @@ |
141 | 141 | ); |
142 | 142 | // Checks if this is a current rev of talk page and we should show a new |
143 | 143 | // section link |
144 | | - if ( ( $isTalk && $wgArticle->isCurrent() ) || ( $wgOut->showNewSectionLink() ) ) { |
| 144 | + if ( ( $isTalk && $wgArticle && $wgArticle->isCurrent() ) || ( $wgOut->showNewSectionLink() ) ) { |
145 | 145 | // Checks if we should ever show a new section link |
146 | 146 | if ( !$wgOut->forceHideNewSectionLink() ) { |
147 | 147 | // Adds new section link |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -399,6 +399,8 @@ |
400 | 400 | * (bug 19129) Only show MyISAM/InnoDB when supported |
401 | 401 | * (bug 17762) Only show other e-mail options when e-mail is globally enabled |
402 | 402 | * Cache multiple sizes of InstantCommons thumbnails |
| 403 | +* (bug 25488) Disallowing anonymous users to read pages no longer throws error |
| 404 | + on discussion pages with vector as default skin |
403 | 405 | |
404 | 406 | === API changes in 1.17 === |
405 | 407 | * (bug 22738) Allow filtering by action type on query=logevent. |