diff options
author | lpsolit%gmail.com <> | 2006-01-21 23:07:03 +0100 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-01-21 23:07:03 +0100 |
commit | c856f1ec2e30c85527965b7f1384fd9386fbcb86 (patch) | |
tree | 5840bfea5634163ae3132583bbc9a7153c3ef45d /template | |
parent | fb8598cd25fb5dfeecde63662079d92116a2d647 (diff) | |
download | bugzilla-c856f1ec2e30c85527965b7f1384fd9386fbcb86.tar.gz bugzilla-c856f1ec2e30c85527965b7f1384fd9386fbcb86.tar.xz |
Bug 322906: Flag inclusion and exclusion lists in editflagtypes.cgi should have a size of 7 instead of 4 - Patch by timeless <timeless@bemail.org> r=LpSolit a=justdave
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 836a7abe5..ad41576cb 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -121,12 +121,12 @@ </td> <td style="vertical-align: top;"> <b>Inclusions:</b><br> - [% PROCESS "global/select-menu.html.tmpl" name="inclusion_to_remove" multiple="1" size="4" options=type.inclusions %]<br> + [% PROCESS "global/select-menu.html.tmpl" name="inclusion_to_remove" multiple="1" size="7" options=type.inclusions %]<br> <input type="submit" name="categoryAction-removeInclusion" value="Remove Inclusion"> </td> <td style="vertical-align: top;"> <b>Exclusions:</b><br> - [% PROCESS "global/select-menu.html.tmpl" name="exclusion_to_remove" multiple="1" size="4" options=type.exclusions %]<br> + [% PROCESS "global/select-menu.html.tmpl" name="exclusion_to_remove" multiple="1" size="7" options=type.exclusions %]<br> <input type="submit" name="categoryAction-removeExclusion" value="Remove Exclusion"> </td> </tr> |