summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Lawrence <dlawrence@mozilla.com>2013-05-06 22:54:45 +0200
committerDave Lawrence <dlawrence@mozilla.com>2013-05-06 22:54:45 +0200
commitbf36421e1a146eb02d3ea3e6f7f1c951023f2443 (patch)
treed6f663206c30d030148d98ffa28d9cf879d8e720
parentf08b3babcbaf99c1037e05c3f0e97fdf9a280df7 (diff)
downloadbugzilla-bf36421e1a146eb02d3ea3e6f7f1c951023f2443.tar.gz
bugzilla-bf36421e1a146eb02d3ea3e6f7f1c951023f2443.tar.xz
Bug 869162 - Lost infra/moco security checkboxes on submission
-rw-r--r--extensions/BMO/lib/Data.pm2
-rw-r--r--extensions/BMO/template/en/default/bug/create/create-mozpr.html.tmpl2
-rw-r--r--template/en/default/bug/create/create.html.tmpl2
3 files changed, 3 insertions, 3 deletions
diff --git a/extensions/BMO/lib/Data.pm b/extensions/BMO/lib/Data.pm
index 05acbf8c4..2c67555b9 100644
--- a/extensions/BMO/lib/Data.pm
+++ b/extensions/BMO/lib/Data.pm
@@ -417,7 +417,7 @@ our %product_sec_groups = (
"Mozilla Grants" => 'grants',
"Mozilla Messaging" => 'mozilla-messaging-confidential',
"Mozilla Metrics" => 'metrics-private',
- "mozilla.org" => 'mozilla-confidential',
+ "mozilla.org" => 'mozilla-corporation-confidential',
"Mozilla PR" => 'pr-private',
"Mozilla QA" => 'mozilla-corporation-confidential',
"Mozilla Reps" => 'mozilla-reps',
diff --git a/extensions/BMO/template/en/default/bug/create/create-mozpr.html.tmpl b/extensions/BMO/template/en/default/bug/create/create-mozpr.html.tmpl
index cc4a8641d..06336d63f 100644
--- a/extensions/BMO/template/en/default/bug/create/create-mozpr.html.tmpl
+++ b/extensions/BMO/template/en/default/bug/create/create-mozpr.html.tmpl
@@ -568,7 +568,7 @@ TUI_hide_default('expert_fields');
[%# exclude the default security from from the groups_available %]
[%# list, as it will be added by the BMO extension %]
[% groups_available = [] %]
- [% FOREACH group (product.groups_available) %]
+ [% FOREACH group = product.groups_available %]
[% NEXT IF group.name == product.default_security_group %]
[% groups_available.push(group) %]
[% END %]
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index 786fab551..eeb4539d2 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -769,7 +769,7 @@ TUI_hide_default('attachment_text_field');
[%# BMO - exclude the default security from from the groups_available %]
[%# list, as it will be added by the BMO extension %]
[% groups_available = [] %]
- [% FOREACH group (product.groups_available) %]
+ [% FOREACH group = product.groups_available %]
[% NEXT IF group.name == product.default_security_group %]
[% groups_available.push(group) %]
[% END %]