Commit 8f025114 authored by myk%mozilla.org's avatar myk%mozilla.org

Fix for bug 122900: implements email preference for unconfirmed bugs.

r=jouni
parent 3713224a
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
# Rights Reserved. # Rights Reserved.
# #
# Contributor(s): Gervase Markham <gerv@gerv.net> # Contributor(s): Gervase Markham <gerv@gerv.net>
# Myk Melez <myk@mozilla.org>
#%] #%]
[%# INTERFACE: [%# INTERFACE:
...@@ -138,7 +139,10 @@ ...@@ -138,7 +139,10 @@
{ name = 'CC', { name = 'CC',
description = 'CC field changes' }, description = 'CC field changes' },
{ name = 'Other', { name = 'Other',
description = 'Any field not mentioned above changes' } ] %] description = 'Any field not mentioned above changes' },
{ name = 'Unconfirmed',
description = 'The bug is in the unconfirmed state' },
] %]
<tr> <tr>
[% FOREACH role = [ "Reporter", "Owner", "QAcontact", "CClist", "Voter" ] [% FOREACH role = [ "Reporter", "Owner", "QAcontact", "CClist", "Voter" ]
%] %]
......
...@@ -45,7 +45,7 @@ my $defaultflagstring = "ExcludeSelf~on~"; ...@@ -45,7 +45,7 @@ my $defaultflagstring = "ExcludeSelf~on~";
my @roles = ("Owner", "Reporter", "QAcontact", "CClist", "Voter"); my @roles = ("Owner", "Reporter", "QAcontact", "CClist", "Voter");
my @reasons = ("Removeme", "Comments", "Attachments", "Status", "Resolved", my @reasons = ("Removeme", "Comments", "Attachments", "Status", "Resolved",
"Keywords", "CC", "Other"); "Keywords", "CC", "Other", "Unconfirmed");
foreach my $role (@roles) { foreach my $role (@roles) {
foreach my $reason (@reasons) { foreach my $reason (@reasons) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment