diff options
author | rojanu <aliustek@gmail.com> | 2011-03-26 23:05:17 +0100 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-03-26 23:05:17 +0100 |
commit | f6e585f272f8d1c1c3fbede3a5f4994c5da1e182 (patch) | |
tree | f6a7a6ad8ea528fec9ec6e6abe40d1ec7b626013 /template/en/default/admin/groups | |
parent | f98af557d48ae9cea1d41fff18643200af7f7d8e (diff) | |
download | bugzilla-f6e585f272f8d1c1c3fbede3a5f4994c5da1e182.tar.gz bugzilla-f6e585f272f8d1c1c3fbede3a5f4994c5da1e182.tar.xz |
Bug 449067: Add an ID to more buttons (to help with Selenium scripts)
r/a=LpSolit
Diffstat (limited to 'template/en/default/admin/groups')
-rw-r--r-- | template/en/default/admin/groups/confirm-remove.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/admin/groups/edit.html.tmpl | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/groups/confirm-remove.html.tmpl b/template/en/default/admin/groups/confirm-remove.html.tmpl index cdb070d33..54d961623 100644 --- a/template/en/default/admin/groups/confirm-remove.html.tmpl +++ b/template/en/default/admin/groups/confirm-remove.html.tmpl @@ -59,7 +59,7 @@ <input type="hidden" name="action" value="remove_regexp"> <input name="token" type="hidden" value="[% token FILTER html %]"> - <input name="confirm" type="submit" value="Confirm"> + <input id="confirm" name="confirm" type="submit" value="Confirm"> <p>Or <a href="editgroups.cgi">return to the Edit Groups page</a>.</p> </form> diff --git a/template/en/default/admin/groups/edit.html.tmpl b/template/en/default/admin/groups/edit.html.tmpl index f7fd3081b..9403c076d 100644 --- a/template/en/default/admin/groups/edit.html.tmpl +++ b/template/en/default/admin/groups/edit.html.tmpl @@ -184,7 +184,7 @@ </table> [% END %] - <input type="submit" value="Update Group"> + <input type="submit" id="update-group" value="Update Group"> <input type="hidden" name="token" value="[% token FILTER html %]"> </form> @@ -200,7 +200,7 @@ <legend>Remove all explicit memberships from users whose login names match the following regular expression:</legend> <input type="text" size="20" name="regexp"> - <input type="submit" value="Remove Memberships"> + <input type="submit" id="remove-membership" value="Remove Memberships"> <p>If you leave the field blank, all explicit memberships in this group will be removed.</p> |