'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' => [
[% 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 %]