diff options
author | lpsolit%gmail.com <> | 2005-06-25 19:28:47 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-06-25 19:28:47 +0000 |
commit | 25a83b434ea1a3cbded1ade80df2cb78f2e733dc (patch) | |
tree | 110dec79171ae5de558e0bb03d585a31b2988ba1 /Bugzilla | |
parent | Bug 277454: Bugs in inactivated groups don't show padlocks on the buglist - P... (diff) | |
download | bugzilla-25a83b434ea1a3cbded1ade80df2cb78f2e733dc.tar.gz bugzilla-25a83b434ea1a3cbded1ade80df2cb78f2e733dc.tar.bz2 bugzilla-25a83b434ea1a3cbded1ade80df2cb78f2e733dc.zip |
Bug 298190: The "200 bugs" limit in buglist.cgi should be a constant, not a magic number - Patch by Tiago R. Mello <timello@async.com.br> r=kiko,justdave a=justdave
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Constants.pm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Bugzilla/Constants.pm b/Bugzilla/Constants.pm index b7cc013a2..b745ad65f 100644 --- a/Bugzilla/Constants.pm +++ b/Bugzilla/Constants.pm @@ -83,6 +83,8 @@ use base qw(Exporter); GLOBAL_EVENTS EVT_FLAG_REQUESTED EVT_REQUESTED_FLAG + + FULLTEXT_BUGLIST_LIMIT ); @Bugzilla::Constants::EXPORT_OK = qw(contenttypes); @@ -221,5 +223,8 @@ 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; 1; |