Index: branches/REL1_18/phase3/RELEASE-NOTES-1.18 |
— | — | @@ -15,6 +15,7 @@ |
16 | 16 | * (bug 3901) Lang, hreflang attribs added to sidebar interlanguage links for screen readers |
17 | 17 | * (bug 30774) mediawiki.html: Add support for numbers and booleans in the |
18 | 18 | attribute values and element contents. |
| 19 | +* (bug 32473) [[Special:PasswordReset]] can not be used on private wiki |
19 | 20 | |
20 | 21 | |
21 | 22 | == MediaWiki 1.18 == |
Index: branches/REL1_18/phase3/includes/Title.php |
— | — | @@ -1854,7 +1854,10 @@ |
1855 | 1855 | |
1856 | 1856 | # Always grant access to the login page. |
1857 | 1857 | # 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 | + ) { |
1859 | 1862 | return true; |
1860 | 1863 | } |
1861 | 1864 | |