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 @@ ...@@ -486,7 +486,7 @@
</tr> </tr>
<tr> <tr>
<td colspan="7" align="right"> <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 %] Summarize time (including time for [% terms.bugs %]
blocking this [% terms.bug %])</a> blocking this [% terms.bug %])</a>
</td> </td>
...@@ -497,13 +497,16 @@ ...@@ -497,13 +497,16 @@
[%# *** Custom Fields *** %] [%# *** Custom Fields *** %]
[% USE Bugzilla %] [% USE Bugzilla %]
<table> [% fields = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %]
[% FOREACH field = Bugzilla.get_fields({ obsolete => 0, custom => 1 }) %] [% IF fields %]
<tr> <table>
[% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=1 %] [% FOREACH field = fields %]
</tr> <tr>
[% END %] [% PROCESS bug/field.html.tmpl value=bug.${field.name} editable=1 %]
</table> </tr>
[% END %]
</table>
[% END %]
[%# *** Attachments *** %] [%# *** 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