From 94266c521b3e388b41f3dd6f74948a9ec71997d5 Mon Sep 17 00:00:00 2001 From: "myk%mozilla.org" <> Date: Wed, 3 Sep 2003 09:03:30 +0000 Subject: Fix for bug 145588: adds full-text search option for more accurate finding of individual bugs via words that appear in their descriptions/comments/summaries. r=bbaetz a=myk --- template/en/default/list/table.html.tmpl | 20 ++++++++++++++------ 1 file changed, 14 insertions(+), 6 deletions(-) (limited to 'template/en/default/list/table.html.tmpl') diff --git a/template/en/default/list/table.html.tmpl b/template/en/default/list/table.html.tmpl index 32016390a..99be51257 100644 --- a/template/en/default/list/table.html.tmpl +++ b/template/en/default/list/table.html.tmpl @@ -85,8 +85,12 @@   [% END %] - ID + [% IF sorted_by_relevance %] + ID + [% ELSE %] + ID + [% END %] [% IF splitheader %] @@ -119,10 +123,14 @@ [% BLOCK columnheader %] - - [%- abbrev.$id.title || field_descs.$id || column.title -%] + [% IF sorted_by_relevance %] + [%- abbrev.$id.title || field_descs.$id || column.title -%] + [% ELSE %] + + [%- abbrev.$id.title || field_descs.$id || column.title -%] + [% END %] [% END %] -- cgit v1.2.3-24-g4f1b