diff options
Diffstat (limited to 'userprefs.cgi')
-rwxr-xr-x | userprefs.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/userprefs.cgi b/userprefs.cgi index 1c9cf2068..6950fea88 100755 --- a/userprefs.cgi +++ b/userprefs.cgi @@ -28,6 +28,7 @@ use lib qw(.); use Bugzilla; use Bugzilla::Constants; use Bugzilla::Search; +use Bugzilla::Auth; require "CGI.pl"; @@ -94,7 +95,7 @@ sub SaveAccount { || ThrowUserError("new_password_missing"); ValidatePassword($pwd1, $pwd2); - my $cryptedpassword = SqlQuote(Crypt($pwd1)); + my $cryptedpassword = SqlQuote(bz_crypt($pwd1)); SendSQL("UPDATE profiles SET cryptpassword = $cryptedpassword WHERE userid = $userid"); |