diff options
author | travis%sedsystems.ca <> | 2005-03-10 01:20:15 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-10 01:20:15 +0100 |
commit | 56c497393404c0b9077e3050b6c722e41b152c9b (patch) | |
tree | 3452ad592e63b53600c3141661295a4fb75c4dcb | |
parent | 672d71471ee2ddae6005a9259789899c41264823 (diff) | |
download | bugzilla-56c497393404c0b9077e3050b6c722e41b152c9b.tar.gz bugzilla-56c497393404c0b9077e3050b6c722e41b152c9b.tar.xz |
Bug 284621 : Change default settings for Voter to only include The bug is resolved or verified
Patch by Shane H. W. Travis <travis@sedsystems.ca> r=timeless a=myk
-rw-r--r-- | Bugzilla/Constants.pm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index c07742ed0..d59ae0f84 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -192,14 +192,14 @@ use constant DEFAULT_EMAIL_SETTINGS => "~emailCClistUnconfirmed~on" . "~emailVoterRemoveme~on" . - "~emailVoterComments~on" . - "~emailVoterAttachments~on" . - "~emailVoterStatus~on" . + "~emailVoterComments~" . + "~emailVoterAttachments~" . + "~emailVoterStatus~" . "~emailVoterResolved~on" . - "~emailVoterKeywords~on" . + "~emailVoterKeywords~" . "~emailVoterCC~" . - "~emailVoterOther~on" . - "~emailVoterUnconfirmed~on"; + "~emailVoterOther~" . + "~emailVoterUnconfirmed~"; use constant GRANT_DIRECT => 0; use constant GRANT_DERIVED => 1; |