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 | |
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')
-rw-r--r-- | template/en/default/account/prefs/prefs.html.tmpl | 2 | ||||
-rw-r--r-- | template/en/default/filterexceptions.pl | 11 | ||||
-rw-r--r-- | template/en/default/global/tabs.html.tmpl | 4 |
3 files changed, 5 insertions, 12 deletions
diff --git a/template/en/default/account/prefs/prefs.html.tmpl b/template/en/default/account/prefs/prefs.html.tmpl index 5287ff1e4..e849a4e99 100644 --- a/template/en/default/account/prefs/prefs.html.tmpl +++ b/template/en/default/account/prefs/prefs.html.tmpl @@ -53,7 +53,7 @@ [% FOREACH tab IN tabs %] [% IF tab.name == current_tab_name %] - [% current_tab=tab %] + [% current_tab = tab %] [% LAST %] [% END %] [% END %] diff --git a/template/en/default/filterexceptions.pl b/template/en/default/filterexceptions.pl index cf98ea8e2..3b765ddd4 100644 --- a/template/en/default/filterexceptions.pl +++ b/template/en/default/filterexceptions.pl @@ -90,11 +90,6 @@ 'status.name', ], -'search/tabs.html.tmpl' => [ - 'tab.name', - 'tab.description', -], - 'request/queue.html.tmpl' => [ 'column_headers.$group_field', 'column_headers.$column', @@ -655,10 +650,8 @@ ], 'account/prefs/prefs.html.tmpl' => [ - 'tab.name', - 'tab.description', - 'current_tab.name', - 'current_tab.description', + 'current_tab.label', + 'current_tab.name', ], 'account/prefs/settings.html.tmpl' => [ 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 %] |