diff options
author | lpsolit%gmail.com <> | 2005-05-06 04:20:44 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-05-06 04:20:44 +0200 |
commit | d320ac0ee8de76512a87f5cbcf08350ae4ecc652 (patch) | |
tree | 96b65c444a6884d099eb59e7f5207d26c5c660a5 /template | |
parent | dfbc39b00d9dc7f38fa01de7b73569e4dacf1c91 (diff) | |
download | bugzilla-d320ac0ee8de76512a87f5cbcf08350ae4ecc652.tar.gz bugzilla-d320ac0ee8de76512a87f5cbcf08350ae4ecc652.tar.xz |
Bug 288663: The inclusion and exclusion lists behave incorrectly when a product or a component is called "Any" - Patch by Frédéric Buclin <LpSolit@gmail.com> r=myk a=myk
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/flag-type/edit.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index 8afbc38cb..8491a1e7f 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -64,10 +64,10 @@ <input type="hidden" name="id" value="[% type.id %]"> <input type="hidden" name="target_type" value="[% type.target_type %]"> [% FOREACH category = type.inclusions %] - <input type="hidden" name="inclusions" value="[% category FILTER html %]"> + <input type="hidden" name="inclusions" value="[% category.value FILTER html %]"> [% END %] [% FOREACH category = type.exclusions %] - <input type="hidden" name="exclusions" value="[% category FILTER html %]"> + <input type="hidden" name="exclusions" value="[% category.value FILTER html %]"> [% END %] <table id="form" cellspacing="0" cellpadding="4" border="0"> |