diff options
author | lpsolit%gmail.com <> | 2006-09-23 08:14:53 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-09-23 08:14:53 +0200 |
commit | e99b3c135ae31ba62001b8308a5c3369800971e9 (patch) | |
tree | ab1b7adc93b557c4a745c0ceaa755d91dc40a7b4 /editusers.cgi | |
parent | b9fdf68a3c077b75496f4e274c5623bd16943847 (diff) | |
download | bugzilla-e99b3c135ae31ba62001b8308a5c3369800971e9.tar.gz bugzilla-e99b3c135ae31ba62001b8308a5c3369800971e9.tar.xz |
Bug 353623: SanityCheck 'rescanallbugmail' parameter not working (no 'changer' specified) - Patch by Frédéric Buclin <LpSolit@gmail.com> r=ghendricks a=justdave
Diffstat (limited to 'editusers.cgi')
-rwxr-xr-x | editusers.cgi | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/editusers.cgi b/editusers.cgi index 9baf0050f..f30c66746 100755 --- a/editusers.cgi +++ b/editusers.cgi @@ -29,6 +29,7 @@ use Bugzilla::Util; use Bugzilla::Error; use Bugzilla::User; use Bugzilla::Bug; +use Bugzilla::BugMail; use Bugzilla::Flag; use Bugzilla::Field; use Bugzilla::Group; @@ -716,7 +717,7 @@ if ($action eq 'search') { # Send mail about what we've done to bugs. # The deleted user is not notified of the changes. foreach (keys(%updatedbugs)) { - Bugzilla::BugMail::Send($_); + Bugzilla::BugMail::Send($_, {'changer' => $user->login} ); } ########################################################################### |