From 76c90bb4e3390f5622e0426292921876be650b9c Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Thu, 22 Mar 2012 13:50:02 +0800 Subject: Bug 731526: Adds an email event for product and/or component notifications r=LpSolit, a=LpSolit --- Bugzilla/User.pm | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Bugzilla/User.pm') diff --git a/Bugzilla/User.pm b/Bugzilla/User.pm index 5462b33db..9e4ecb8fb 100644 --- a/Bugzilla/User.pm +++ b/Bugzilla/User.pm @@ -1620,7 +1620,9 @@ our %names_to_events = ( 'attachments.mimetype' => EVT_ATTACHMENT_DATA, 'attachments.ispatch' => EVT_ATTACHMENT_DATA, 'dependson' => EVT_DEPEND_BLOCK, - 'blocked' => EVT_DEPEND_BLOCK); + 'blocked' => EVT_DEPEND_BLOCK, + 'product' => EVT_COMPONENT, + 'component' => EVT_COMPONENT); # Returns true if the user wants mail for a given bug change. # Note: the "+" signs before the constants suppress bareword quoting. @@ -1639,7 +1641,7 @@ sub wants_bug_mail { } else { # Catch-all for any change not caught by a more specific event - $events{+EVT_OTHER} = 1; + $events{+EVT_OTHER} = 1; } # If the user is in a particular role and the value of that role -- cgit v1.2.3-24-g4f1b