From 6010f04049afc0df105efa7715e4d0631386d49c Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 29 Jul 2006 03:35:10 +0000 Subject: Bug 346245: attribute parameter 'johndoe@company.tld' is not a hash ref at Bugzilla/Auth/Verify.pm line 112 Patch By Max Kanat-Alexander r=wurblzap, a=myk --- Bugzilla/Auth/Verify.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Auth') diff --git a/Bugzilla/Auth/Verify.pm b/Bugzilla/Auth/Verify.pm index 68a20f6df..952998caf 100644 --- a/Bugzilla/Auth/Verify.pm +++ b/Bugzilla/Auth/Verify.pm @@ -102,7 +102,7 @@ sub create_or_update_user { # Now that we have a valid User, we need to see if any data has to be # updated. - if ($username && $user->login ne $username) { + if ($username && lc($user->login) ne lc($username)) { validate_email_syntax($username) || return { failure => AUTH_ERROR, error => 'auth_invalid_email', details => {addr => $username} }; @@ -110,7 +110,7 @@ sub create_or_update_user { # placeholder, and we've already validated it, so it's safe. trick_taint($username); $dbh->do('UPDATE profiles SET login_name = ? WHERE userid = ?', - $username, $user->id); + undef, $username, $user->id); } if ($real_name && $user->name ne $real_name) { # $real_name is more than likely tainted, but we only use it -- cgit v1.2.3-24-g4f1b