r105537 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r105536‎ | r105537 | r105538 >
Date:11:06, 8 December 2011
Author:hashar
Status:ok
Tags:
Comment:
MFT to REL1_18 r105428

(bug 32473) [[Special:PasswordReset]] can not be used on private wiki
Modified paths:
  • /branches/REL1_18/phase3/RELEASE-NOTES-1.18 (modified) (history)
  • /branches/REL1_18/phase3/includes/Title.php (modified) (history)

Diff [purge]

Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18
@@ -15,6 +15,7 @@
1616 * (bug 3901) Lang, hreflang attribs added to sidebar interlanguage links for screen readers
1717 * (bug 30774) mediawiki.html: Add support for numbers and booleans in the
1818 attribute values and element contents.
 19+* (bug 32473) [[Special:PasswordReset]] can not be used on private wiki
1920
2021
2122 == MediaWiki 1.18 ==
Index: branches/REL1_18/phase3/includes/Title.php
@@ -1854,7 +1854,10 @@
18551855
18561856 # Always grant access to the login page.
18571857 # Even anons need to be able to log in.
1858 - if ( $this->isSpecial( 'Userlogin' ) || $this->isSpecial( 'ChangePassword' ) ) {
 1858+ if ( $this->isSpecial( 'Userlogin' )
 1859+ || $this->isSpecial( 'ChangePassword' )
 1860+ || $this->isSpecial( 'PasswordReset' )
 1861+ ) {
18591862 return true;
18601863 }
18611864

Past revisions this follows-up on

RevisionCommit summaryAuthorDate
r105428(bug 32473) [[Special:PasswordReset]] can not be used on private wiki...hashar14:25, 7 December 2011

Status & tagging log