diff options
author | lpsolit%gmail.com <> | 2005-10-12 11:08:54 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-10-12 11:08:54 +0200 |
commit | 2ecd676f8e8154f6364a3a158013250695ed9251 (patch) | |
tree | a5444c151d610a2d8a4751b4ffde88739624a259 /template/en | |
parent | 6e549ec68c0893d8eba685a5d1a4eb151752a07d (diff) | |
download | bugzilla-2ecd676f8e8154f6364a3a158013250695ed9251.tar.gz bugzilla-2ecd676f8e8154f6364a3a158013250695ed9251.tar.xz |
Bug 306325: Move CanEnterProduct() and CanEnterProductOrWarn() out of globals.pl - Patch by Frédéric Buclin <LpSolit@gmail.com> r=joel r=wicked a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/list/edit-multiple.html.tmpl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/template/en/default/list/edit-multiple.html.tmpl b/template/en/default/list/edit-multiple.html.tmpl index 92754387d..d55a4e2db 100644 --- a/template/en/default/list/edit-multiple.html.tmpl +++ b/template/en/default/list/edit-multiple.html.tmpl @@ -55,13 +55,15 @@ <th><label for="product">Product:</label></th> <td> [% PROCESS selectmenu menuname = "product" - menuitems = products %] + menuitems = products + property = "name" %] </td> <th><label for="version">Version:</label></th> <td> [% PROCESS selectmenu menuname = "version" - menuitems = versions %] + menuitems = versions + property = "" %] </td> </tr> @@ -358,6 +360,7 @@ [% dontchange FILTER html %] </option> [% FOREACH menuitem = menuitems %] + [% IF property %][% menuitem = menuitem.$property %][% END %] <option value="[% menuitem FILTER html %]">[% menuitem FILTER html %]</option> [% END %] </select> |