diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-12 02:51:55 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-12 02:51:55 +0200 |
commit | 393dd151c6138b53c2f3ecaa21f2667ab827061d (patch) | |
tree | 4fb0ac2fc78e5ad4945dcca68fa8b9c8320ce0a2 /template | |
parent | 87c4a3b9273bbeb04e7c4aa8d06a12186f744fb7 (diff) | |
download | bugzilla-393dd151c6138b53c2f3ecaa21f2667ab827061d.tar.gz bugzilla-393dd151c6138b53c2f3ecaa21f2667ab827061d.tar.xz |
Bug 686246: When editing the inclusion and exclusion lists of a flagtype, empty grant and request groups are replaced by "" instead of "(no group)" in the drop-down menu
a=LpSolit
Diffstat (limited to 'template')
-rw-r--r-- | template/en/default/admin/flag-type/edit.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index f44c44d9d..2cb985a47 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -262,7 +262,7 @@ [%- group.name FILTER html ~%] </option> [% END %] - [% IF !group_found && type.${selname} %] + [% IF !group_found && type.${selname}.name %] <option value="[% type.${selname}.name FILTER html %]" selected="selected"> [%- type.${selname}.name FILTER html ~%] </option> |