summaryrefslogtreecommitdiffstats
path: root/template/en/default/global/tabs.html.tmpl
diff options
context:
space:
mode:
authormyk%mozilla.org <>2005-07-30 10:01:53 +0200
committermyk%mozilla.org <>2005-07-30 10:01:53 +0200
commit257634d733e33f7bb60826e225f7255c405a4887 (patch)
tree72e9e8caadeaca94dbb36515e36fb71656c531c1 /template/en/default/global/tabs.html.tmpl
parentd79c2c86ef0b69c4250642e3709f22a34fe7c8a0 (diff)
downloadbugzilla-257634d733e33f7bb60826e225f7255c405a4887.tar.gz
bugzilla-257634d733e33f7bb60826e225f7255c405a4887.tar.xz
Fixing build bustage caused by not correctly updating filter exceptions (and in a couple cases not filtering when it would make sense)
Diffstat (limited to 'template/en/default/global/tabs.html.tmpl')
-rw-r--r--template/en/default/global/tabs.html.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/tabs.html.tmpl b/template/en/default/global/tabs.html.tmpl
index a5140bd0d..6f8601b86 100644
--- a/template/en/default/global/tabs.html.tmpl
+++ b/template/en/default/global/tabs.html.tmpl
@@ -35,9 +35,9 @@
[% FOREACH tab = tabs %]
[% IF tab.name == current_tab_name %]
- <td class="tab selected">[% tab.label %]</td>
+ <td class="tab selected">[% tab.label FILTER html %]</td>
[% ELSE %]
- <td class="tab"><a href="[% tab.link %]">[% tab.label %]</a></td>
+ <td class="tab"><a href="[% tab.link FILTER html %]">[% tab.label FILTER html %]</a></td>
[% END %]
[% END %]