Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
bugzilla
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
etersoft
bugzilla
Commits
2a3dbfdb
Commit
2a3dbfdb
authored
Feb 02, 2005
by
myk%mozilla.org
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
parent
d652763b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
edit.html.tmpl
template/en/default/bug/edit.html.tmpl
+4
-4
No files found.
template/en/default/bug/edit.html.tmpl
View file @
2a3dbfdb
...
...
@@ -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 %]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment