diff options
author | 2010-05-06 22:44:58 -0500 | |
---|---|---|
committer | 2010-05-06 22:44:58 -0500 | |
commit | b4c91adafa45e4e1146ca1dabab27404dac6bab6 (patch) | |
tree | fa98b726cf2726aef6638289db59d8c3df86eda4 /email_in.pl | |
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 'email_in.pl')
-rwxr-xr-x | email_in.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/email_in.pl b/email_in.pl index 8e2c00053..4e44222d5 100755 --- a/email_in.pl +++ b/email_in.pl @@ -422,7 +422,7 @@ handle_attachments($bug, $attachments, $comment); # to wait for $bug->update() to be fully used in email_in.pl first. So # currently, process_bug.cgi does the mail sending for bugs, and this does # any mail sending for attachments after the first one. -Bugzilla::BugMail::Send($bug->id, { changer => Bugzilla->user->login }); +Bugzilla::BugMail::Send($bug->id, { changer => Bugzilla->user }); debug_print("Sent bugmail"); |