(bug 17722) Fix regression where users are unable to change temporary passwords
authorChad Horohoe <demon@users.mediawiki.org>
Tue, 3 Mar 2009 13:45:53 +0000 (13:45 +0000)
committerChad Horohoe <demon@users.mediawiki.org>
Tue, 3 Mar 2009 13:45:53 +0000 (13:45 +0000)
RELEASE-NOTES
includes/specials/SpecialUserlogin.php

index f012f1a..7392098 100644 (file)
@@ -234,6 +234,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
   queue
 * (bug 17761) "show/hide" link in page history in now works for the first
   displayed revision if it's not the current one
+* (bug 17722) Fix regression where users are unable to change temporary passwords
 
 == API changes in 1.15 ==
 * (bug 16858) Revamped list=deletedrevs to make listing deleted contributions
index ce16b64..4bb2bf9 100644 (file)
@@ -585,7 +585,7 @@ class LoginForm {
                global $wgOut;
                $wgOut->addHTML( Xml::element('p', array( 'class' => 'error' ), $error ) );
                $reset = new SpecialResetpass();
-               $reset->execute( null );
+               $reset->execute( $this->mName );
        }
 
        /**