Commit b7622eb0 authored by vladd%bugzilla.org's avatar vladd%bugzilla.org

Bug 348871: modify show_bug in order to pass HTML validation - Patch by…

Bug 348871: modify show_bug in order to pass HTML validation - Patch by victory(_RSZ_) <bmo@rsz.jp> r=LpSolit a=myk
parent d2329ad4
......@@ -486,7 +486,7 @@
</tr>
<tr>
<td colspan="7" align="right">
<a href="summarize_time.cgi?id=[% bug.bug_id %]&do_depends=1">
<a href="summarize_time.cgi?id=[% bug.bug_id %]&amp;do_depends=1">
Summarize time (including time for [% terms.bugs %]
blocking this [% terms.bug %])</a>
</td>
......@@ -497,13 +497,16 @@
[%# *** Custom Fields *** %]
[% USE Bugzilla %]
<table>
[% FOREACH field = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %]
<tr>
[% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=1 %]
</tr>
[% END %]
</table>
[% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %]
[% IF fields %]
<table>
[% FOREACH field = fields %]
<tr>
[% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=1 %]
</tr>
[% END %]
</table>
[% END %]
[%# *** Attachments *** %]
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment