summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authortravis%sedsystems.ca <>2005-03-11 01:21:33 +0100
committertravis%sedsystems.ca <>2005-03-11 01:21:33 +0100
commitab5067bb0995cce2afe51803b5f005cc9f994416 (patch)
tree93ee81693db753abb0660f6effb44c9706bcf0a5 /defparams.pl
parent6674f61905d98aee08b95c22181aa439bfb041e5 (diff)
downloadbugzilla-ab5067bb0995cce2afe51803b5f005cc9f994416.tar.gz
bugzilla-ab5067bb0995cce2afe51803b5f005cc9f994416.tar.xz
Bug 41972 : Per-user pref to turn quips off
Patch by Shane H. W. Travis <travis@sedsystems.ca> r=mkanat a=justdave
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl18
1 files changed, 9 insertions, 9 deletions
diff --git a/defparams.pl b/defparams.pl
index af5715235..5e2110d61 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -390,16 +390,16 @@ sub find_languages {
},
{
- 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>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>',
+ name => 'quip_list_entry_control',
+ desc => 'Controls how easily users can add entries to the quip list.' .
+ '<ul><li>open - Users may freely add to the quip list, and ' .
+ 'their entries will immediately be available for viewing.</li>' .
+ '<li>moderated - quips can be entered, but need to be approved ' .
+ 'by an admin before they will be shown</li><li>closed - no new ' .
+ 'additions to the quips list are allowed.</li></ul>',
type => 's',
- choices => ['on', 'approved', 'frozen', 'off'],
- default => 'on',
+ choices => ['open', 'moderated', 'closed'],
+ default => 'open',
checker => \&check_multi
},