diff options
author | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2006-07-12 21:21:36 +0200 |
commit | 2362793369156ae7c9c63c50a07ac2c79a9df7fa (patch) | |
tree | 5bfcf1b1a5410c8691be31c81057bd06231c86b1 /template/en/default/admin/groups | |
parent | 38b4491409ab9e0bd8c020a0d87c8b273097139b (diff) | |
download | bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.gz bugzilla-2362793369156ae7c9c63c50a07ac2c79a9df7fa.tar.xz |
Bug 317694: All buttons in forms must have an id - Patches by André Batosti <batosti@async.com.br> r=ghendricks a=myk
Diffstat (limited to 'template/en/default/admin/groups')
-rw-r--r-- | template/en/default/admin/groups/create.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/admin/groups/delete.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/admin/groups/edit.html.tmpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/groups/create.html.tmpl b/template/en/default/admin/groups/create.html.tmpl index 8da00a799..a82acf6ce 100644 --- a/template/en/default/admin/groups/create.html.tmpl +++ b/template/en/default/admin/groups/create.html.tmpl @@ -47,7 +47,7 @@ <input type="checkbox" name="insertnew" value="1" [% IF Param("makeproductgroups") %] checked[% END %]> Insert new group into all existing products.<p> - <input type="submit" value="Add"> + <input type="submit" id="create" value="Add"> <input type="hidden" name="action" value="new"> </form> diff --git a/template/en/default/admin/groups/delete.html.tmpl b/template/en/default/admin/groups/delete.html.tmpl index d0f66f2ad..cca19981b 100644 --- a/template/en/default/admin/groups/delete.html.tmpl +++ b/template/en/default/admin/groups/delete.html.tmpl @@ -100,7 +100,7 @@ indicated problems first before you can proceed.</b></p> [% END %] - <p><input type="submit" value="Yes, delete"> + <p><input type="submit" id="delete" value="Yes, delete"> <input type="hidden" name="action" value="delete"> <input type="hidden" name="group" value="[% gid FILTER html %]"> </form> diff --git a/template/en/default/admin/groups/edit.html.tmpl b/template/en/default/admin/groups/edit.html.tmpl index 610d3102e..51aba7ffe 100644 --- a/template/en/default/admin/groups/edit.html.tmpl +++ b/template/en/default/admin/groups/edit.html.tmpl @@ -170,7 +170,7 @@ [% END %] </table> - <input type="submit" value="Save Changes"> + <input type="submit" id="update" value="Save Changes"> <br> <dl> [% IF usevisibility %] |