diff options
author | Reed Loden <reed@reedloden.com> | 2010-05-07 05:44:58 +0200 |
---|---|---|
committer | Reed Loden <reed@reedloden.com> | 2010-05-07 05:44:58 +0200 |
commit | b4c91adafa45e4e1146ca1dabab27404dac6bab6 (patch) | |
tree | fa98b726cf2726aef6638289db59d8c3df86eda4 /post_bug.cgi | |
parent | 2ca283e7bfc85d86ffd5f312bbab89eedcf9929b (diff) | |
download | bugzilla-b4c91adafa45e4e1146ca1dabab27404dac6bab6.tar.gz bugzilla-b4c91adafa45e4e1146ca1dabab27404dac6bab6.tar.xz |
Bug 395451 - "Bugzilla::BugMail needs to use Bug objects internally instead of direct SQL"
[r=mkanat a=mkanat]
Diffstat (limited to 'post_bug.cgi')
-rwxr-xr-x | post_bug.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/post_bug.cgi b/post_bug.cgi index 0f78cc5cd..c097a96ce 100755 --- a/post_bug.cgi +++ b/post_bug.cgi @@ -245,7 +245,7 @@ if ($token) { ("createbug:$id", $token)); } -my $recipients = { changer => $user->login }; +my $recipients = { changer => $user }; my $bug_sent = Bugzilla::BugMail::Send($id, $recipients); $bug_sent->{type} = 'created'; $bug_sent->{id} = $id; |