diff options
author | Reed Loden <reed@reedloden.com> | 2010-05-06 22:44:58 -0500 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-05-06 22:44:58 -0500 |
commit | b4c91adafa45e4e1146ca1dabab27404dac6bab6 (patch) | |
tree | fa98b726cf2726aef6638289db59d8c3df86eda4 /sanitycheck.cgi | |
parent | Bug 463945: Add default values for membercontrol and othercontrol (diff) | |
download | bugzilla-b4c91adafa45e4e1146ca1dabab27404dac6bab6.tar.gz bugzilla-b4c91adafa45e4e1146ca1dabab27404dac6bab6.tar.bz2 bugzilla-b4c91adafa45e4e1146ca1dabab27404dac6bab6.zip |
Bug 395451 - "Bugzilla::BugMail needs to use Bug objects internally instead of direct SQL"
[r=mkanat a=mkanat]
Diffstat (limited to 'sanitycheck.cgi')
-rwxr-xr-x | sanitycheck.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sanitycheck.cgi b/sanitycheck.cgi index c298d1250..63872bd49 100755 --- a/sanitycheck.cgi +++ b/sanitycheck.cgi @@ -248,7 +248,7 @@ if ($cgi->param('rescanallBugMail')) { # and so choosing this user as being the last one having done a change # for the bug may be problematic. So the best we can do at this point # is to choose the currently logged in user for email notification. - $vars->{'changer'} = Bugzilla->user->login; + $vars->{'changer'} = Bugzilla->user; foreach my $bugid (@$list) { Bugzilla::BugMail::Send($bugid, $vars); |