summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authormyk%mozilla.org <>2005-02-02 05:03:34 +0100
committermyk%mozilla.org <>2005-02-02 05:03:34 +0100
commit2a3dbfdb7f95c9ceb846b2dccf48f306be931991 (patch)
treeb983315535789bb0e2a5afa589142c5618c5aa21 /template
parentd652763b3fe4ae1256736c188c203f80b3b8f8f8 (diff)
downloadbugzilla-2a3dbfdb7f95c9ceb846b2dccf48f306be931991.tar.gz
bugzilla-2a3dbfdb7f95c9ceb846b2dccf48f306be931991.tar.xz
Fix for bug 157692: adds "for" attribute to label tags so they work in IE 5.5.
Patch by Anne van Kesteren. Thanks Anne! r=myk, a=myk
Diffstat (limited to 'template')
-rw-r--r--template/en/default/bug/edit.html.tmpl8
1 files changed, 4 insertions, 4 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 3b8cd7b06..74d81b462 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -136,9 +136,9 @@
<a href="[% Param('urlbase') %]show_bug.cgi?id=[% bug.bug_id %]">
[% bug.bug_id %]</a>
[% IF Param("usebugaliases") %]
- <label title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies">
+ <label for="alias" title="a name for the [% terms.bug %] that can be used in place of its ID number, f.e. when adding it to a list of dependencies">
<b>alias:</b>
- <input name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20">
+ <input id="alias" name="alias" value="[% bug.alias FILTER html %]" size="20" maxlength="20">
</label>
[% END %]
</td>
@@ -486,8 +486,8 @@
[% IF NOT bug.cc || NOT bug.cc.contains(user.login) %]
<br>
- <label>
- <input type="checkbox" name="addselfcc">
+ <label for="addselfcc">
+ <input type="checkbox" id="addselfcc" name="addselfcc">
Add [% user.login FILTER html %] to CC list
</label>
[% END %]