]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Fixing build bustage caused by not correctly updating filter exceptions (and in a...
authormyk%mozilla.org <>
Sat, 30 Jul 2005 08:01:53 +0000 (08:01 +0000)
committermyk%mozilla.org <>
Sat, 30 Jul 2005 08:01:53 +0000 (08:01 +0000)
template/en/default/account/prefs/prefs.html.tmpl
template/en/default/filterexceptions.pl
template/en/default/global/tabs.html.tmpl

index 5287ff1e4fa4f9a49968e7723efb5b38067edb38..e849a4e99121c3296bd6f2d36827761162e67f93 100644 (file)
@@ -53,7 +53,7 @@
 
 [% FOREACH tab IN tabs %]
   [% IF tab.name == current_tab_name %]
-    [% current_tab=tab %]
+    [% current_tab = tab %]
     [% LAST %]
   [% END %]
 [% END %]
index cf98ea8e2dbe988749925349e8b042061a4b491c..3b765ddd49c28af855641c8001f9e75d03f1c086 100644 (file)
   'status.name',
 ],
 
-'search/tabs.html.tmpl' => [
-  'tab.name',
-  'tab.description',
-],
-
 'request/queue.html.tmpl' => [
   'column_headers.$group_field', 
   'column_headers.$column', 
 ],
 
 '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' => [
index a5140bd0da5f0571526df87400baa2eb3f08205e..6f8601b86458474f45140f4c176eaf188f7c7215 100644 (file)
@@ -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 %]