diff options
author | Byron Jones <bjones@mozilla.com> | 2012-04-30 16:17:20 +0200 |
---|---|---|
committer | Byron Jones <bjones@mozilla.com> | 2012-04-30 16:17:20 +0200 |
commit | f703087eec36da5a957ae5bcd28f3a0e23fde770 (patch) | |
tree | 8d39f4d562f65efe6492f4db74427e48fca56fc3 /extensions/BMO/lib | |
parent | 6d979c6365dda7de39ab64f27c8997694ba41590 (diff) | |
download | bugzilla-f703087eec36da5a957ae5bcd28f3a0e23fde770.tar.gz bugzilla-f703087eec36da5a957ae5bcd28f3a0e23fde770.tar.xz |
Bug 750144: default sec-groups for products should always be filable
Diffstat (limited to 'extensions/BMO/lib')
-rw-r--r-- | extensions/BMO/lib/Data.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/extensions/BMO/lib/Data.pm b/extensions/BMO/lib/Data.pm index 929498e74..798162fbd 100644 --- a/extensions/BMO/lib/Data.pm +++ b/extensions/BMO/lib/Data.pm @@ -335,4 +335,7 @@ our %product_sec_groups = ( "_default" => 'core-security' ); +# Default security groups for products should always been fileable +map { $always_fileable_group{$_} = 1 } values %product_sec_groups; + 1; |