summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-01-15 15:48:12 +0100
committerjustdave%syndicomm.com <>2003-01-15 15:48:12 +0100
commit77b86e4c02e0057a573594afdd84ba15c643a4fc (patch)
tree4b55a172f4521bdd9ee3973fd1a70a19e51aab1d /defparams.pl
parente86587aaaffadae9fd7d2789aad9e1199c92cb8c (diff)
downloadbugzilla-77b86e4c02e0057a573594afdd84ba15c643a4fc.tar.gz
bugzilla-77b86e4c02e0057a573594afdd84ba15c643a4fc.tar.xz
Bug 184309: Adds an optional disabled state to quips, which allows quips to be moderated if the admin so chooses.
Patch by Tobias Burnus <burnus@gmx.de> r=joel, a=justdave
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl9
1 files changed, 5 insertions, 4 deletions
diff --git a/defparams.pl b/defparams.pl
index 0d6c2a3c7..922a9dfe2 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -226,11 +226,12 @@ sub check_netmask {
name => 'enablequips',
desc => 'Controls the appearance of quips at the top of buglists.<ul> ' .
'<li>on - Bugzilla will display a quip, and lets users add to ' .
- 'the list.</li><li>frozen - Bugzilla will display a quip but ' .
- 'not permit new additions.</li><li>off - Bugzilla will not ' .
- 'display quips.</li></ul>',
+ 'the list.</li><li>approved - quips can be entered, but need ' .
+ 'be approved before shown</li><li>frozen - Bugzilla will display ' .
+ 'a quip but not permit new additions.</li><li>off - Bugzilla ' .
+ 'will not display quips.</li></ul>',
type => 's',
- choices => ['on','frozen','off'],
+ choices => ['on', 'approved', 'frozen', 'off'],
default => 'on',
checker => \&check_multi
},