summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug
diff options
context:
space:
mode:
Diffstat (limited to 'template/en/default/bug')
-rw-r--r--template/en/default/bug/comments.html.tmpl6
-rw-r--r--template/en/default/bug/create/create-guided.html.tmpl4
-rw-r--r--template/en/default/bug/create/create.html.tmpl4
-rw-r--r--template/en/default/bug/dependency-tree.html.tmpl2
-rw-r--r--template/en/default/bug/edit.html.tmpl18
5 files changed, 17 insertions, 17 deletions
diff --git a/template/en/default/bug/comments.html.tmpl b/template/en/default/bug/comments.html.tmpl
index f5880a811..6e97d9b1e 100644
--- a/template/en/default/bug/comments.html.tmpl
+++ b/template/en/default/bug/comments.html.tmpl
@@ -51,10 +51,10 @@
[% IF mode == "edit" && isinsider %]
<i>
- <input type=hidden name="oisprivate-[% count %]"
+ <input type="hidden" name="oisprivate-[% count %]"
value="[% comment.isprivate %]">
- <input type=hidden name="when-[% count %]" value="[% comment.when %]">
- <input type=checkbox name="isprivate-[% count %]" value="1"
+ <input type="hidden" name="when-[% count %]" value="[% comment.when %]">
+ <input type="checkbox" name="isprivate-[% count %]" value="1"
[% " checked=\"checked\"" IF comment.isprivate %]> Private
</i>
[% END %]
diff --git a/template/en/default/bug/create/create-guided.html.tmpl b/template/en/default/bug/create/create-guided.html.tmpl
index 364f8d472..2faa07baa 100644
--- a/template/en/default/bug/create/create-guided.html.tmpl
+++ b/template/en/default/bug/create/create-guided.html.tmpl
@@ -42,7 +42,7 @@
[% tablecolour = "#FFFFCC" %]
[%# This script displays the descriptions for selected components. %]
-<script>
+<script type="text/javascript">
var descriptions = [
[% FOREACH c = component_ %]
'[% c.description FILTER js %]',
@@ -486,7 +486,7 @@ function PutDescription() {
<option name="major" value="major">
Major: A major feature is broken.
</option>
- <option name="normal" value="normal" selected>
+ <option name="normal" value="normal" selected="selected">
Normal: It's a bug that should be fixed.
</option>
<option name="minor" value="minor">
diff --git a/template/en/default/bug/create/create.html.tmpl b/template/en/default/bug/create/create.html.tmpl
index 6bc3e5441..302c7e3d9 100644
--- a/template/en/default/bug/create/create.html.tmpl
+++ b/template/en/default/bug/create/create.html.tmpl
@@ -17,7 +17,7 @@
# Rights Reserved.
#
# Contributor(s): Gervase Markham <gerv@gerv.net>
- # Ville Skyttä <ville.skytta@iki.fi>
+ # Ville Skyttä <ville.skytta@iki.fi>
#%]
[% PROCESS global/header.html.tmpl
@@ -159,7 +159,7 @@
<tr>
<td align="right"><strong>Estimated Hours:</strong></td>
<td colspan="3">
- <input name="estimated_time" size="6" maxlength="6" value="0.0"/>
+ <input name="estimated_time" size="6" maxlength="6" value="0.0">
</td>
</tr>
diff --git a/template/en/default/bug/dependency-tree.html.tmpl b/template/en/default/bug/dependency-tree.html.tmpl
index 98c0ec254..64c452c8b 100644
--- a/template/en/default/bug/dependency-tree.html.tmpl
+++ b/template/en/default/bug/dependency-tree.html.tmpl
@@ -17,7 +17,7 @@
# Rights Reserved.
#
# Contributor(s): Tobias Burnus <burnus@net-b.de>
- # Ville Skyttä <ville.skytta@iki.fi>
+ # Ville Skyttä <ville.skytta@iki.fi>
# Myk Melez <myk@mozilla.org>
#%]
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl
index 5ee8100a9..162b40a7f 100644
--- a/template/en/default/bug/edit.html.tmpl
+++ b/template/en/default/bug/edit.html.tmpl
@@ -290,24 +290,24 @@ function updateRemainingTime() {
[% IF UserInGroup(Param('timetrackinggroup')) %]
<br>
- <table cellpadding=0 cellspacing=0 border=1>
+ <table cellspacing="0" cellpadding="4" border="1">
<tr>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
Orig. Est.
</th>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
Current Est.
</th>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
Hours Worked
</th>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
Hours Left
</th>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
%Complete
</th>
- <th width="16.6%" align="center" bgcolor="#cccccc">
+ <th align="center" bgcolor="#cccccc">
Gain
</th>
</tr>
@@ -325,13 +325,13 @@ function updateRemainingTime() {
<td align="center">
[% PROCESS formattimeunit time_unit=bug.actual_time %] +
<input name="work_time" value="0" size="3" maxlength="6"
- onChange="adjustRemainingTime();">
+ onchange="adjustRemainingTime();">
</td>
<td align="center">
<input name="remaining_time"
value="[% PROCESS formattimeunit
time_unit=bug.remaining_time %]"
- size="6" maxlength="6" onChange="updateRemainingTime();">
+ size="6" maxlength="6" onchange="updateRemainingTime();">
</td>
<td align="center">
[% PROCESS calculatepercentage act=bug.actual_time