summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authordmose%mozilla.org <>1999-12-03 08:21:40 +0100
committerdmose%mozilla.org <>1999-12-03 08:21:40 +0100
commit054be7c4ef0b5ace9155df00654b48fafd137a3a (patch)
tree58cb8b7e3db887e4c1dc69ead41ef0a6b30c603a /defparams.pl
parent1e216d4eb54fcb827f6910d578f54d92839147a1 (diff)
downloadbugzilla-054be7c4ef0b5ace9155df00654b48fafd137a3a.tar.gz
bugzilla-054be7c4ef0b5ace9155df00654b48fafd137a3a.tar.xz
a bug fix or two and a whole bunch of sanity-checking of form submissions stuff
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl10
1 files changed, 9 insertions, 1 deletions
diff --git a/defparams.pl b/defparams.pl
index bb266d37a..f035b5761 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -19,6 +19,7 @@
#
# Contributor(s): Terry Weissman <terry@mozilla.org>
# Dawn Endico <endico@mozilla.org>
+# Dan Mosedale <dmose@mozilla.org>
# This file defines all the parameters that we have a GUI to edit within
@@ -368,7 +369,14 @@ DefParam("allowbugdeletion",
"b",
0);
+DefParam("strictvaluechecks",
+ "Do stricter integrity checking on both form submission values and values read in from the database.",
+ "b",
+ 0);
-
+DefParam("browserbugmessage",
+ "If strictvaluechecks is on, and the bugzilla gets unexpected data from the browser, in addition to displaying the cause of the problem, it will output this HTML as well.",
+ "l",
+ "this may indicate a bug in your browser.\n");
1;