summaryrefslogtreecommitdiffstats
path: root/Bugzilla/WebService/Bug.pm
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2014-03-20 21:57:18 +0100
committerDavid Lawrence <dkl@mozilla.com>2014-03-20 21:57:18 +0100
commit99457cc8631ec71dcacb4e79b1597c0f8b9abd25 (patch)
tree2886187dfe1f10b5cf210a798126d19fe024f73d /Bugzilla/WebService/Bug.pm
parent076af7dcd9541e0ff7b2e1895759cedf156a5c39 (diff)
downloadbugzilla-99457cc8631ec71dcacb4e79b1597c0f8b9abd25.tar.gz
bugzilla-99457cc8631ec71dcacb4e79b1597c0f8b9abd25.tar.xz
Bug 986124 - backport upstream bug 513212 to bmo/4.2 to add the ability to add see_also values in enter_bug.cgi and Bug.create
Diffstat (limited to 'Bugzilla/WebService/Bug.pm')
-rw-r--r--Bugzilla/WebService/Bug.pm3
1 files changed, 2 insertions, 1 deletions
diff --git a/Bugzilla/WebService/Bug.pm b/Bugzilla/WebService/Bug.pm
index 058d12ecd..80a055ae2 100644
--- a/Bugzilla/WebService/Bug.pm
+++ b/Bugzilla/WebService/Bug.pm
@@ -763,7 +763,8 @@ sub create {
$dbh->bz_commit_transaction();
- Bugzilla::BugMail::Send($bug->bug_id, { changer => $bug->reporter });
+ $bug->send_changes();
+
return { id => $self->type('int', $bug->bug_id) };
}