]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fix bustage
authorFrédéric Buclin <LpSolit@gmail.com>
Sat, 5 May 2012 22:22:55 +0000 (00:22 +0200)
committerFrédéric Buclin <LpSolit@gmail.com>
Sat, 5 May 2012 22:22:55 +0000 (00:22 +0200)
Bugzilla/Field.pm
template/en/default/sighting/list.html.tmpl

index f81e819c589b27ba3b362668b59e6df13e1323b4..f865c4929685ed1f51053971082b18adb2f223c6 100644 (file)
@@ -249,7 +249,7 @@ use constant DEFAULT_FIELDS => (
     {name => 'see_also',              desc => "See Also",
      type => FIELD_TYPE_BUG_URLS},
     {name => 'tag',                   desc => 'Tags', buglist => 1},
-    {name => 'master_bug_id',         desc => 'Master Bug ID',
+    {name => 'master_bug_id',         desc => 'Master Bug ID'},
 );
 
 ################
index a8cf20a5a3c121c01a23f226c123c2336b6937e0..78dba937157e6d377088c58f3774dc87f17d5dcf 100644 (file)
 
 [% BLOCK render_sighting_row %]
     <tr id="s[% target.id FILTER html %]">
-      <[% tag %]>
+      <[% tag FILTER html %]>
         [% target.bug_id FILTER bug_link(target) FILTER none %]
-      </[% tag %]>
-      <[% tag %]>
+      </[% tag FILTER html %]>
+      <[% tag FILTER html %]>
         [% PROCESS bug/status.html.tmpl %]
-      </[% tag %]>
+      </[% tag FILTER html %]>
     </tr>
 [% END %]