summaryrefslogtreecommitdiffstats
path: root/Bugzilla/User.pm
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2005-11-01 08:09:28 +0100
committerlpsolit%gmail.com <>2005-11-01 08:09:28 +0100
commit967d3f6601d528cb2499f88d12acba0ce61ecfa2 (patch)
tree931601cb1a6a47f065f7a1760e27d94683cf50a0 /Bugzilla/User.pm
parent7cb75c8af8b5cdcbc1040e659a4d6d2d8457d7e7 (diff)
downloadbugzilla-967d3f6601d528cb2499f88d12acba0ce61ecfa2.tar.gz
bugzilla-967d3f6601d528cb2499f88d12acba0ce61ecfa2.tar.xz
Bug 314269: Add email pref to not send mail about dependency changes - Patch by Todd Stansell <tjs@tellme.com> r=joel a=justdave
Diffstat (limited to 'Bugzilla/User.pm')
-rw-r--r--Bugzilla/User.pm4
1 files changed, 3 insertions, 1 deletions
diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm
index 6beb16a8b..701c1c2b2 100644
--- a/Bugzilla/User.pm
+++ b/Bugzilla/User.pm
@@ -1085,7 +1085,9 @@ our %names_to_events = (
'Target Milestone' => EVT_PROJ_MANAGEMENT,
'Attachment description' => EVT_ATTACHMENT_DATA,
'Attachment mime type' => EVT_ATTACHMENT_DATA,
- 'Attachment is patch' => EVT_ATTACHMENT_DATA);
+ 'Attachment is patch' => EVT_ATTACHMENT_DATA,
+ 'BugsThisDependsOn' => EVT_DEPEND_BLOCK,
+ 'OtherBugsDependingOnThis' => EVT_DEPEND_BLOCK);
# Returns true if the user wants mail for a given bug change.
# Note: the "+" signs before the constants suppress bareword quoting.