From 9ef5f2fd4853a6ec51fbb1688a0c3831d2fc09eb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Fr=C3=A9d=C3=A9ric=20Buclin?= Date: Mon, 2 Aug 2010 01:22:25 +0200 Subject: [PATCH] Bug 581622: When a quicksearch includes the "content" field, it is limited to 200 bugs r/a=mkanat --- Bugzilla/Constants.pm | 6 ------ buglist.cgi | 1 - template/en/default/global/messages.html.tmpl | 4 ---- 3 files changed, 11 deletions(-) diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index 086ead1916..3ba395d85b 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -112,8 +112,6 @@ use File::Basename; GLOBAL_EVENTS EVT_FLAG_REQUESTED EVT_REQUESTED_FLAG - FULLTEXT_BUGLIST_LIMIT - ADMIN_GROUP_NAME PER_PRODUCT_PRIVILEGES @@ -339,10 +337,6 @@ use constant EVT_REQUESTED_FLAG => 101; # I have requested a flag use constant GLOBAL_EVENTS => EVT_FLAG_REQUESTED, EVT_REQUESTED_FLAG; -# Number of bugs to return in a buglist when performing -# a fulltext search. -use constant FULLTEXT_BUGLIST_LIMIT => 200; - # Default administration group name. use constant ADMIN_GROUP_NAME => 'admin'; diff --git a/buglist.cgi b/buglist.cgi index d9b19dc007..4bfd413435 100755 --- a/buglist.cgi +++ b/buglist.cgi @@ -858,7 +858,6 @@ if (defined $cgi->param('limit')) { } } elsif ($fulltext) { - $query .= " " . $dbh->sql_limit(FULLTEXT_BUGLIST_LIMIT); if ($cgi->param('order') && $cgi->param('order') =~ /^relevance/) { $vars->{'message'} = 'buglist_sorted_by_relevance'; } diff --git a/template/en/default/global/messages.html.tmpl b/template/en/default/global/messages.html.tmpl index 24f193cf76..7351aa01d9 100644 --- a/template/en/default/global/messages.html.tmpl +++ b/template/en/default/global/messages.html.tmpl @@ -150,10 +150,6 @@ [% ELSIF message_tag == "buglist_sorted_by_relevance" %] [% terms.Bugs %] on this list are sorted by relevance, with the most relevant [% terms.bugs %] at the top. - [% IF bugs.size == constants.FULLTEXT_BUGLIST_LIMIT %] - Only the [% constants.FULLTEXT_BUGLIST_LIMIT FILTER html %] - most relevant [% terms.bugs %] are shown. - [% END %] [% ELSIF message_tag == "change_columns" %] [% title = "Change columns" %] -- 2.47.2