From: mkanat%bugzilla.org <> Date: Fri, 4 Dec 2009 15:19:08 +0000 (+0000) Subject: Bug 532911: Remove use of Bugzilla::User from Bugzilla::Install::DB (modules may... X-Git-Tag: bugzilla-3.5.3~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bcbb3ba91f5dc4f13fbb0a49f8a5e441d686b34d;p=thirdparty%2Fbugzilla.git Bug 532911: Remove use of Bugzilla::User from Bugzilla::Install::DB (modules may not be used like that during Install::DB) Patch by Max Kanat-Alexander (module owner) a=mkanat --- diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index 0ae909ecde..bada40dad8 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -2817,13 +2817,13 @@ sub _move_data_nomail_into_db { SET disable_mail = 1 WHERE userid = ?'); foreach my $user_to_check (keys %nomail) { - my $uid; - if ($uid = Bugzilla::User::login_to_id($user_to_check)) { - my $user = new Bugzilla::User($uid); - print "\tDisabling email for user ", $user->email, "\n"; - $query->execute($user->id); - delete $nomail{$user->email}; - } + my $uid = $dbh->selectrow_array( + 'SELECT userid FROM profiles WHERE login_name = ?', + undef, $user_to_check); + next if !$uid; + print "\tDisabling email for user $user_to_check\n"; + $query->execute($uid); + delete $nomail{$user_to_check}; } # If there are any nomail entries remaining, move them to nomail.bad