summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-04-07 03:19:44 +0200
committerjustdave%syndicomm.com <>2001-04-07 03:19:44 +0200
commit6ed055cfc3fb1f7821fdfbccbda100a489f57ffa (patch)
tree3ac41f59af043caf91c74107fa83f996d6f5d5b6 /defparams.pl
parent9818692e383d603ed728df6c16c02150854b6d3c (diff)
downloadbugzilla-6ed055cfc3fb1f7821fdfbccbda100a489f57ffa.tar.gz
bugzilla-6ed055cfc3fb1f7821fdfbccbda100a489f57ffa.tar.xz
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
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl8
1 files changed, 4 insertions, 4 deletions
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.</li>
<br>
});
+DefParam("mostfreqthreshold",
+ "The minimum number of duplicates a bug needs to show up on the <A HREF=\"duplicates.cgi\">most frequently reported bugs page</a>. 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.",