Commit 257634d7 authored by myk%mozilla.org's avatar myk%mozilla.org

Fixing build bustage caused by not correctly updating filter exceptions (and in…

Fixing build bustage caused by not correctly updating filter exceptions (and in a couple cases not filtering when it would make sense)
parent d79c2c86
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
[% FOREACH tab IN tabs %] [% FOREACH tab IN tabs %]
[% IF tab.name == current_tab_name %] [% IF tab.name == current_tab_name %]
[% current_tab=tab %] [% current_tab = tab %]
[% LAST %] [% LAST %]
[% END %] [% END %]
[% END %] [% END %]
......
...@@ -90,11 +90,6 @@ ...@@ -90,11 +90,6 @@
'status.name', 'status.name',
], ],
'search/tabs.html.tmpl' => [
'tab.name',
'tab.description',
],
'request/queue.html.tmpl' => [ 'request/queue.html.tmpl' => [
'column_headers.$group_field', 'column_headers.$group_field',
'column_headers.$column', 'column_headers.$column',
...@@ -655,10 +650,8 @@ ...@@ -655,10 +650,8 @@
], ],
'account/prefs/prefs.html.tmpl' => [ 'account/prefs/prefs.html.tmpl' => [
'tab.name', 'current_tab.label',
'tab.description',
'current_tab.name', 'current_tab.name',
'current_tab.description',
], ],
'account/prefs/settings.html.tmpl' => [ 'account/prefs/settings.html.tmpl' => [
......
...@@ -35,9 +35,9 @@ ...@@ -35,9 +35,9 @@
[% FOREACH tab = tabs %] [% FOREACH tab = tabs %]
[% IF tab.name == current_tab_name %] [% IF tab.name == current_tab_name %]
<td class="tab selected">[% tab.label %]</td> <td class="tab selected">[% tab.label FILTER html %]</td>
[% ELSE %] [% 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 %]
[% END %] [% END %]
......
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