diff options
author | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-12 02:50:40 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-09-12 02:50:40 +0200 |
commit | 381d530928f57932ab3341e2d06d69b6a647dfd6 (patch) | |
tree | 64b74198c332e3b31f488a65eba942ca11dfa281 /template | |
parent | 361a2f42c415c6671127a04da3f0b5270be97f4d (diff) | |
download | bugzilla-381d530928f57932ab3341e2d06d69b6a647dfd6.tar.gz bugzilla-381d530928f57932ab3341e2d06d69b6a647dfd6.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> |