summaryrefslogtreecommitdiffstats
path: root/template/en/default/attachment/choose.html.tmpl
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/attachment/choose.html.tmpl
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/attachment/choose.html.tmpl')
-rw-r--r--template/en/default/attachment/choose.html.tmpl6
1 files changed, 3 insertions, 3 deletions
diff --git a/template/en/default/attachment/choose.html.tmpl b/template/en/default/attachment/choose.html.tmpl
index 2f7b86f19..306efea59 100644
--- a/template/en/default/attachment/choose.html.tmpl
+++ b/template/en/default/attachment/choose.html.tmpl
@@ -29,15 +29,15 @@
<form name="choose-id" method="get" action="attachment.cgi">
<p>Access an attachment by entering its ID into the form below:</p>
<p>Attachment ID: <input name="id" size="6">
- <button name="action" value="edit">&nbsp;Edit&nbsp;</button>
- <button name="action" value="view">View</button>
+ <button name="action" value="edit" id="edit">&nbsp;Edit&nbsp;</button>
+ <button name="action" value="view" id="view">View</button>
</p>
</form>
<form method="get" action="show_bug.cgi">
<p>Or, access it from the list of attachments in its associated [% terms.bug %] report:</p>
<p>[% terms.Bug %] ID: <input name="id" size="6">
- <input type="submit" name="action" value="View">
+ <input type="submit" name="action" value="View" id="action">
</p>
</form>