diff options
author | myk%mozilla.org <> | 2004-09-24 10:01:30 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2004-09-24 10:01:30 +0200 |
commit | da7ecb070a05a1b91b63a931bc0c4e9d288b616b (patch) | |
tree | 12680f43ce4fd418512159090a4dfefd35539928 /template/en | |
parent | 864e9a127ad2c7b9e8d11e8cc557462e470651f0 (diff) | |
download | bugzilla-da7ecb070a05a1b91b63a931bc0c4e9d288b616b.tar.gz bugzilla-da7ecb070a05a1b91b63a931bc0c4e9d288b616b.tar.xz |
Fix for bug 252739: moves inclusion/exclusion action names to button name instead of button value so that button values (which are also used as labels) will be localizable; patch by Marc Schumann; r=kiko,myk; a=justdave
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/admin/flag-type/edit.html.tmpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/admin/flag-type/edit.html.tmpl b/template/en/default/admin/flag-type/edit.html.tmpl index 4b4e64a16..1faaaf3b8 100644 --- a/template/en/default/admin/flag-type/edit.html.tmpl +++ b/template/en/default/admin/flag-type/edit.html.tmpl @@ -118,18 +118,18 @@ [% item FILTER html %]</option> [% END %] </select><br> - <input type="submit" name="categoryAction" value="Include"> - <input type="submit" name="categoryAction" value="Exclude"> + <input type="submit" name="categoryAction-include" value="Include"> + <input type="submit" name="categoryAction-exclude" value="Exclude"> </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> - <input type="submit" name="categoryAction" value="Remove Inclusion"> + <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> - <input type="submit" name="categoryAction" value="Remove Exclusion"> + <input type="submit" name="categoryAction-removeExclusion" value="Remove Exclusion"> </td> </tr> </table> |