From 6ed055cfc3fb1f7821fdfbccbda100a489f57ffa Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sat, 7 Apr 2001 01:19:44 +0000 Subject: Fix for bug 72721 (duplicates.cgi performs poorly with lots of bugs) and bug 69054 (DB_File not portable): dependence on DB_File removed, now uses AnyDBM_File which comes standard with Perl. Duplicates.cgi now runs its queries against the shadow database if it's available, among many other improvements. Patch by gervase.markham@univ.ox.ac.uk (Gervase Markham) r= justdave --- defparams.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'defparams.pl') diff --git a/defparams.pl b/defparams.pl index c384eb973..ff60338b0 100644 --- a/defparams.pl +++ b/defparams.pl @@ -120,10 +120,6 @@ sub check_shadowdb { # t -- A short text entry field (suitable for a single line) # l -- A long text field (suitable for many lines) # b -- A boolean value (either 1 or 0) -# i -- An integer. -# defenum -- This param defines an enum that defines a column in one of -# the database tables. The name of the parameter is of the form -# "tablename.columnname". DefParam("maintainer", "The email address of the person who maintains this installation of Bugzilla.", @@ -334,6 +330,10 @@ additional data you may have.
}); +DefParam("mostfreqthreshold", + "The minimum number of duplicates a bug needs to show up on the most frequently reported bugs page. If you have a large database and this page takes a long time to load, try increasing this number.", + "t", + "2"); DefParam("mybugstemplate", "This is the URL to use to bring up a simple 'all of my bugs' list for a user. %userid% will get replaced with the login name of a user.", -- cgit v1.2.3-24-g4f1b