diff options
author | kiko%async.com.br <> | 2004-04-14 05:31:26 +0200 |
---|---|---|
committer | kiko%async.com.br <> | 2004-04-14 05:31:26 +0200 |
commit | 6d413a7ccc12dcd446f15dbee9a051f52b85f270 (patch) | |
tree | b8734aa29c91d7e67060d08f316fb6e3d904764d /template/en | |
parent | 79551ef344dc38a32a3f03579f97bc2cc64d6b41 (diff) | |
download | bugzilla-6d413a7ccc12dcd446f15dbee9a051f52b85f270.tar.gz bugzilla-6d413a7ccc12dcd446f15dbee9a051f52b85f270.tar.xz |
Additional fix for bug 87770: attachment.cgi should work with no
parameters. Use <button> tags to allow for localization of the labels.
r=myk, a=myk.
I padded the Edit button with s to ensure it has the same width as
the View button; it may not be kosher but passes as visually agreeable,
at least.
Diffstat (limited to 'template/en')
-rw-r--r-- | template/en/default/attachment/choose.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/attachment/choose.html.tmpl b/template/en/default/attachment/choose.html.tmpl index b48664653..628dafb96 100644 --- a/template/en/default/attachment/choose.html.tmpl +++ b/template/en/default/attachment/choose.html.tmpl @@ -28,8 +28,8 @@ <form 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"> - <input type="submit" name="action" value="Edit"> - <input type="submit" name="action" value="View"> + <button name="action" value="edit"> Edit </button> + <button name="action" value="view">View</button> </p> </form> |