From: justdave%syndicomm.com <> Date: Wed, 20 Jun 2001 05:02:53 +0000 (+0000) Subject: Fix for bug 45918: the old password field on the userprefs page is now used to log... X-Git-Tag: bugzilla-2.14~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1438d64a16dfa9f2ee7ab84110c2c5662fb7a19d;p=thirdparty%2Fbugzilla.git Fix for bug 45918: the old password field on the userprefs page is now used to log you back in if you try to change your password with cookies turned off, which avoids the confusing login screen after entering your new password in which you used to have to enter your old password one more time in order to let it set your new password (yes, it used to be as confusing as that just sounded :) r= tara@tequilarista.org --- diff --git a/userprefs.cgi b/userprefs.cgi index 5ad99cdbff..f880cf8e22 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -130,9 +130,10 @@ sub ShowAccount { my ($realname) = (FetchSQLData()); $realname = value_quote($realname); - + EmitEntry("Old password", - qq{}); + qq|| . + qq||); EmitEntry("New password", qq{}); EmitEntry("Re-enter new password", @@ -142,9 +143,9 @@ sub ShowAccount { } sub SaveAccount { - if ($::FORM{'oldpwd'} ne "" + if ($::FORM{'Bugzilla_password'} ne "" || $::FORM{'pwd1'} ne "" || $::FORM{'pwd2'} ne "") { - my $old = SqlQuote($::FORM{'oldpwd'}); + my $old = SqlQuote($::FORM{'Bugzilla_password'}); my $pwd1 = SqlQuote($::FORM{'pwd1'}); my $pwd2 = SqlQuote($::FORM{'pwd2'}); SendSQL("SELECT cryptpassword = ENCRYPT($old, LEFT(cryptpassword, 2)) " .