From: lpsolit%gmail.com <> Date: Thu, 28 Dec 2006 08:31:35 +0000 (+0000) Subject: Bug 365092: Inactive flag types should be excluded from the JS array in the bug creat... X-Git-Tag: bugzilla-2.23.4~115 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c98905ff079153fb7491474111158261e1301f9;p=thirdparty%2Fbugzilla.git Bug 365092: Inactive flag types should be excluded from the JS array in the bug creation form - Patch by Frédéric Buclin and Olav Vitters r=LpSolit a=justdave --- diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl index 5957516f96..769128164f 100644 --- a/template/en/default/bug/create/create.html.tmpl +++ b/template/en/default/bug/create/create.html.tmpl @@ -50,17 +50,16 @@ var flags = new Array([% product.components.size %]); [%- FOREACH c = product.components %] components[[% count %]] = "[% c.name FILTER js %]"; initialowners[[% count %]] = "[% c.default_assignee.login FILTER js %]"; - var flag_list = new Array([% c.flag_types.bug.size + c.flag_types.attachment.size %]); - [% flag_count = 0 %] + [% flag_list = [] %] [% FOREACH f = c.flag_types.bug %] - flag_list[[% flag_count %]] = "[% f.id %]"; - [% flag_count = flag_count + 1 %] + [% NEXT UNLESS f.is_active %] + [% flag_list.push(f.id) %] [% END %] [% FOREACH f = c.flag_types.attachment %] - flag_list[[% flag_count %]] = "[% f.id %]"; - [% flag_count = flag_count + 1 %] + [% NEXT UNLESS f.is_active %] + [% flag_list.push(f.id) %] [% END %] - flags[[% count %]] = flag_list; + flags[[% count %]] = [[% flag_list.join(",") FILTER js %]]; [% IF Param("useqacontact") %] initialqacontacts[[% count %]] = "[% c.default_qa_contact.login FILTER js %]"; [% END %] diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index 7321dc5b9c..fe19b42d8a 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -393,8 +393,6 @@ 'sel.name', 'sel.description', 'cloned_bug_id', - 'flag_count', - 'f.id', ], 'bug/create/create-guided.html.tmpl' => [