diff options
author | lpsolit%gmail.com <> | 2006-05-08 05:13:47 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-05-08 05:13:47 +0200 |
commit | ece3a7ec4685b281efee69286a4dbdeb44971661 (patch) | |
tree | a7cf408860ea24421ded09f46dc4d680cc5f19fa /process_bug.cgi | |
parent | 46c78a8c7c42bfdf47ee1f68939aa122371b9662 (diff) | |
download | bugzilla-ece3a7ec4685b281efee69286a4dbdeb44971661.tar.gz bugzilla-ece3a7ec4685b281efee69286a4dbdeb44971661.tar.xz |
Bug 332598: Move ValidatePassword() and DBNameToIdAndCheck() from globals.pl into User.pm - Patch by Frédéric Buclin <LpSolit@gmail.com> r=mkanat a=myk
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi index 8dfa4018d..9ef459bec 100755 --- a/process_bug.cgi +++ b/process_bug.cgi @@ -1050,7 +1050,7 @@ if (defined $cgi->param('newcc') if ($cc_add) { $cc_add =~ s/[\s,]+/ /g; # Change all delimiters to a single space foreach my $person ( split(" ", $cc_add) ) { - my $pid = DBNameToIdAndCheck($person); + my $pid = login_to_id($person, THROW_ERROR); $cc_add{$pid} = $person; } } @@ -1060,7 +1060,7 @@ if (defined $cgi->param('newcc') if ($cc_remove) { $cc_remove =~ s/[\s,]+/ /g; # Change all delimiters to a single space foreach my $person ( split(" ", $cc_remove) ) { - my $pid = DBNameToIdAndCheck($person); + my $pid = login_to_id($person, THROW_ERROR); $cc_remove{$pid} = $person; } } @@ -1087,7 +1087,7 @@ if (defined $cgi->param('qa_contact') my $name = trim($cgi->param('qa_contact')); # The QA contact cannot be deleted from show_bug.cgi for a single bug! if ($name ne $cgi->param('dontchange')) { - $qacontact = DBNameToIdAndCheck($name) if ($name ne ""); + $qacontact = login_to_id($name, THROW_ERROR) if ($name ne ""); if ($qacontact && Param("strict_isolation")) { $usercache{$qacontact} ||= Bugzilla::User->new($qacontact); my $qa_user = $usercache{$qacontact}; @@ -1172,7 +1172,7 @@ SWITCH: for ($cgi->param('knob')) { DoComma(); if (defined $cgi->param('assigned_to') && trim($cgi->param('assigned_to')) ne "") { - $assignee = DBNameToIdAndCheck(trim($cgi->param('assigned_to'))); + $assignee = login_to_id(trim($cgi->param('assigned_to')), THROW_ERROR); if (Param("strict_isolation")) { $usercache{$assignee} ||= Bugzilla::User->new($assignee); my $assign_user = $usercache{$assignee}; |