Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions template/en/default/list/table.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@
<th class="sorttable_nosort">&nbsp;</th>
[% END %]
<th colspan="[% splitheader ? 2 : 1 %]" class="first-child
sorted_[% lsearch(order_columns, 'bug_id') FILTER html %]">
[% order_columns.defined
? 'sorted_' _ lsearch(order_columns, 'bug_id')
: '' FILTER html %]">
<a href="[% basepath FILTER none %]buglist.cgi?
[% urlquerypart FILTER html %]&amp;order=
[% PROCESS new_order id='bug_id' %]
Expand Down Expand Up @@ -148,7 +150,9 @@
[% BLOCK columnheader %]
<th colspan="[% splitheader ? 2 : 1 %]"
class="sortable_column_[% key FILTER html %]
sorted_[% lsearch(order_columns, id) FILTER html %]">
[% order_columns.defined
? 'sorted_' _ lsearch(order_columns, id)
: '' FILTER html %]">
<a href="[% basepath FILTER none %]buglist.cgi?[% urlquerypart FILTER html %]&amp;order=
[% PROCESS new_order %]
[%-#%]&amp;query_based_on=
Expand Down