summaryrefslogtreecommitdiffstats
path: root/buglist.cgi
diff options
context:
space:
mode:
authorTiago Mello <timello@gmail.com>2011-08-17 00:52:45 +0200
committerTiago Mello <timello@gmail.com>2011-08-17 00:52:45 +0200
commit80040dc6c543a114d4e21cd967ba5da7da04142e (patch)
tree6c334608253aade52e81f92f957761be75afa180 /buglist.cgi
parent8713e6f943fe4bb02972199405ab504f4f3b903d (diff)
downloadbugzilla-80040dc6c543a114d4e21cd967ba5da7da04142e.tar.gz
bugzilla-80040dc6c543a114d4e21cd967ba5da7da04142e.tar.xz
Bug 678357: Fix 'limit' parameter in the saved searches results
r/a=mkanat
Diffstat (limited to 'buglist.cgi')
-rwxr-xr-xbuglist.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/buglist.cgi b/buglist.cgi
index 7549063a4..bf8b443e6 100755
--- a/buglist.cgi
+++ b/buglist.cgi
@@ -766,7 +766,7 @@ if ($fulltext and grep { /^relevance/ } @orderstrings) {
# In the HTML interface, by default, we limit the returned results,
# which speeds up quite a few searches where people are really only looking
# for the top results.
-if ($format->{'extension'} eq 'html' && !defined $cgi->param('limit')) {
+if ($format->{'extension'} eq 'html' && !defined $params->param('limit')) {
$params->param('limit', Bugzilla->params->{'default_search_limit'});
$vars->{'default_limited'} = 1;
}