summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/keywords
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/keywords
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/keywords')
-rwxr-xr-xtemplate/en/default/admin/keywords/confirm-delete.html.tmpl3
-rwxr-xr-xtemplate/en/default/admin/keywords/create.html.tmpl2
-rwxr-xr-xtemplate/en/default/admin/keywords/edit.html.tmpl2
3 files changed, 4 insertions, 3 deletions
diff --git a/template/en/default/admin/keywords/confirm-delete.html.tmpl b/template/en/default/admin/keywords/confirm-delete.html.tmpl
index cfe8bf75f..bb29437ef 100755
--- a/template/en/default/admin/keywords/confirm-delete.html.tmpl
+++ b/template/en/default/admin/keywords/confirm-delete.html.tmpl
@@ -46,7 +46,8 @@
<input type="hidden" name="id" value="[% keyword_id %]">
<input type="hidden" name="action" value="delete">
<input type="hidden" name="reallydelete" value="1">
- <input type="submit" value="Yes, really delete the keyword">
+ <input type="submit" id="delete"
+ value="Yes, really delete the keyword">
</form>
<p><a href="editkeywords.cgi">Edit other keywords</a>.</p>
diff --git a/template/en/default/admin/keywords/create.html.tmpl b/template/en/default/admin/keywords/create.html.tmpl
index 3f9f5aecf..103aa03b2 100755
--- a/template/en/default/admin/keywords/create.html.tmpl
+++ b/template/en/default/admin/keywords/create.html.tmpl
@@ -49,7 +49,7 @@
</table>
<hr>
<input type="hidden" name="id" value="-1">
- <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/keywords/edit.html.tmpl b/template/en/default/admin/keywords/edit.html.tmpl
index 74cef3d55..b6b5fc932 100755
--- a/template/en/default/admin/keywords/edit.html.tmpl
+++ b/template/en/default/admin/keywords/edit.html.tmpl
@@ -64,7 +64,7 @@
</tr>
</table>
- <input type="submit" value="Update">
+ <input type="submit" id="update" value="Update">
<input type="hidden" name="action" value="update">
<input type="hidden" name="id" value="[% keyword_id %]">
</form>