summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/components
diff options
context:
space:
mode:
authorlpsolit%gmail.com <>2006-07-12 21:21:36 +0200
committerlpsolit%gmail.com <>2006-07-12 21:21:36 +0200
commit2362793369156ae7c9c63c50a07ac2c79a9df7fa (patch)
tree5bfcf1b1a5410c8691be31c81057bd06231c86b1 /template/en/default/admin/components
parent38b4491409ab9e0bd8c020a0d87c8b273097139b (diff)
downloadbugzilla-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/components')
-rw-r--r--template/en/default/admin/components/confirm-delete.html.tmpl2
-rw-r--r--template/en/default/admin/components/create.html.tmpl2
-rw-r--r--template/en/default/admin/components/edit.html.tmpl2
3 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/admin/components/confirm-delete.html.tmpl b/template/en/default/admin/components/confirm-delete.html.tmpl
index a0387352b..4c94813fd 100644
--- a/template/en/default/admin/components/confirm-delete.html.tmpl
+++ b/template/en/default/admin/components/confirm-delete.html.tmpl
@@ -146,7 +146,7 @@
<p>Do you really want to delete this component?<p>
<form method="post" action="editcomponents.cgi">
- <input type="submit" value="Yes, delete">
+ <input type="submit" id="delete" value="Yes, delete">
<input type="hidden" name="action" value="delete">
<input type="hidden" name="product" value="[% product.name FILTER html %]">
<input type="hidden" name="component" value="[% comp.name FILTER html %]">
diff --git a/template/en/default/admin/components/create.html.tmpl b/template/en/default/admin/components/create.html.tmpl
index fa4c05c14..83c28ab85 100644
--- a/template/en/default/admin/components/create.html.tmpl
+++ b/template/en/default/admin/components/create.html.tmpl
@@ -78,7 +78,7 @@
[% END %]
</table>
<hr>
- <input type="submit" value="Add">
+ <input type="submit" id="create" value="Add">
<input type="hidden" name="action" value="new">
<input type="hidden" name='open_name' value='All Open'>
<input type="hidden" name='nonopen_name' value='All Closed'>
diff --git a/template/en/default/admin/components/edit.html.tmpl b/template/en/default/admin/components/edit.html.tmpl
index 22b7295dd..9392cfd69 100644
--- a/template/en/default/admin/components/edit.html.tmpl
+++ b/template/en/default/admin/components/edit.html.tmpl
@@ -100,7 +100,7 @@
<input type="hidden" name="action" value="update">
<input type="hidden" name="componentold" value="[% comp.name FILTER html %]">
<input type="hidden" name="product" value="[% product.name FILTER html %]">
- <input type="submit" value="Update"> or <a
+ <input type="submit" value="Update" id="update"> or <a
href="editcomponents.cgi?action=del&amp;product=
[%- product.name FILTER url_quote %]&amp;component=
[%- comp.name FILTER url_quote %]">Delete</a> this component.