diff options
author | 2005-03-11 00:21:33 +0000 | |
---|---|---|
committer | 2005-03-11 00:21:33 +0000 | |
commit | ab5067bb0995cce2afe51803b5f005cc9f994416 (patch) | |
tree | 93ee81693db753abb0660f6effb44c9706bcf0a5 /defparams.pl | |
parent | Bug 98123 : Create a user preferences infrastructure (became 'General Settings') (diff) | |
download | bugzilla-ab5067bb0995cce2afe51803b5f005cc9f994416.tar.gz bugzilla-ab5067bb0995cce2afe51803b5f005cc9f994416.tar.bz2 bugzilla-ab5067bb0995cce2afe51803b5f005cc9f994416.zip |
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.pl | 18 |
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 }, |