summaryrefslogtreecommitdiffstats
path: root/template/en/default/admin/flag-type/list.html.tmpl
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-11-19 09:16:24 +0100
committerbbaetz%student.usyd.edu.au <>2002-11-19 09:16:24 +0100
commit880bfcebabf4e079e30f8cb1c9ddb03e2ab366e0 (patch)
tree135db142a871c237fbd039f6f7fcf1665363f5b5 /template/en/default/admin/flag-type/list.html.tmpl
parentea9345d65c7e2770cad1f5890ad6a99b1acc4022 (diff)
downloadbugzilla-880bfcebabf4e079e30f8cb1c9ddb03e2ab366e0.tar.gz
bugzilla-880bfcebabf4e079e30f8cb1c9ddb03e2ab366e0.tar.xz
Bug 175579 - make templates html compliant
r=gerv, a=justdave
Diffstat (limited to 'template/en/default/admin/flag-type/list.html.tmpl')
-rw-r--r--template/en/default/admin/flag-type/list.html.tmpl12
1 files changed, 6 insertions, 6 deletions
diff --git a/template/en/default/admin/flag-type/list.html.tmpl b/template/en/default/admin/flag-type/list.html.tmpl
index 6054c0dbb..43fbf8d56 100644
--- a/template/en/default/admin/flag-type/list.html.tmpl
+++ b/template/en/default/admin/flag-type/list.html.tmpl
@@ -46,7 +46,7 @@
[% PROCESS display_flag_types types=bug_types %]
<p>
- <a href="editflagtypes.cgi?action=enter&target_type=bug">Create Flag Type for Bugs</a>
+ <a href="editflagtypes.cgi?action=enter&amp;target_type=bug">Create Flag Type for Bugs</a>
</p>
<h3>Flag Types for Attachments</h3>
@@ -54,10 +54,10 @@
[% PROCESS display_flag_types types=attachment_types %]
<p>
- <a href="editflagtypes.cgi?action=enter&target_type=attachment">Create Flag Type For Attachments</a>
+ <a href="editflagtypes.cgi?action=enter&amp;target_type=attachment">Create Flag Type For Attachments</a>
</p>
-<script language="JavaScript">
+<script type="text/javascript" language="JavaScript">
<!--
function confirmDelete(id, name, count)
{
@@ -91,11 +91,11 @@
[% FOREACH type = types %]
<tr class="[% type.is_active ? "active" : "inactive" %]">
- <td><a href="editflagtypes.cgi?action=edit&id=[% type.id %]">[% type.name FILTER html %]</a></td>
+ <td><a href="editflagtypes.cgi?action=edit&amp;id=[% type.id %]">[% type.name FILTER html %]</a></td>
<td>[% type.description FILTER html %]</td>
<td>
- <a href="editflagtypes.cgi?action=copy&id=[% type.id %]">Copy</a>
- | <a href="editflagtypes.cgi?action=confirmdelete&id=[% type.id %]"
+ <a href="editflagtypes.cgi?action=copy&amp;id=[% type.id %]">Copy</a>
+ | <a href="editflagtypes.cgi?action=confirmdelete&amp;id=[% type.id %]"
onclick="return confirmDelete([% type.id %], '[% type.name FILTER js %]',
[% type.flag_count %]);">Delete</a>
</td>