diff options
author | lpsolit%gmail.com <> | 2005-04-13 02:57:15 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-04-13 02:57:15 +0200 |
commit | 26773f199e2700ea568553d62001268ca3a072de (patch) | |
tree | 81afc90a71e129d10582c6960ecd9fb85378bc68 /buglist.cgi | |
parent | f1e5b2aa558a8b9475f0fec798d47f06cbec0697 (diff) | |
download | bugzilla-26773f199e2700ea568553d62001268ca3a072de.tar.gz bugzilla-26773f199e2700ea568553d62001268ca3a072de.tar.xz |
Bug 289736: error message in query.cgi: Unknown column 'relevance' - Patch by Teemu Mannermaa <wicked@etlicon.fi> r=jouni a=justdave
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-x | buglist.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi index 32459a058..fbe18f7ee 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -161,7 +161,7 @@ if ($::buffer =~ /&cmd-/) { # we'll remove the relevance column from the lists of columns to display # and order by, since relevance only exists when doing a fulltext search. my $fulltext = 0; -if (defined $cgi->param('content')) { $fulltext = 1 } +if ($cgi->param('content')) { $fulltext = 1 } my @charts = map(/^field(\d-\d-\d)$/ ? $1 : (), $cgi->param()); foreach my $chart (@charts) { if ($cgi->param("field$chart") eq 'content' && $cgi->param("value$chart")) { |