diff options
author | myk%mozilla.org <> | 2005-07-30 10:01:53 +0200 |
---|---|---|
committer | myk%mozilla.org <> | 2005-07-30 10:01:53 +0200 |
commit | 257634d733e33f7bb60826e225f7255c405a4887 (patch) | |
tree | 72e9e8caadeaca94dbb36515e36fb71656c531c1 /template/en/default/global | |
parent | d79c2c86ef0b69c4250642e3709f22a34fe7c8a0 (diff) | |
download | bugzilla-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')
-rw-r--r-- | template/en/default/global/tabs.html.tmpl | 4 |
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 %] |