* (bug 2613) Clear saved passwords from the form
authorNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 26 Aug 2005 22:20:56 +0000 (22:20 +0000)
committerNiklas Laxström <nikerabbit@users.mediawiki.org>
Fri, 26 Aug 2005 22:20:56 +0000 (22:20 +0000)
RELEASE-NOTES
includes/SpecialPreferences.php

index 87d6c2d..2cf2b37 100644 (file)
@@ -57,6 +57,7 @@ fully support the editing toolbar, but was found to be too confusing.
 * (bug 2554) Tell users they are uploading too large file
 * (bug 3271) Updated LanguageNn.php for HEAD
 * (bug 3280) Respect 'move' group permission on page moves
+* (bug 2613) Clear saved passwords from the form
 
 
 === Caveats ===
index bd46290..465f69c 100644 (file)
@@ -216,6 +216,8 @@ class PreferencesForm {
                                return;
                        }
                        $wgUser->setPassword( $this->mNewpass );
+                       $this->mNewpass = $this->mOldpass = $this->mRetypePass = '';
+
                }
                $wgUser->setRealName( $this->mRealName );