summaryrefslogtreecommitdiffstats
path: root/defparams.pl
diff options
context:
space:
mode:
authorkiko%async.com.br <>2004-01-17 07:46:30 +0100
committerkiko%async.com.br <>2004-01-17 07:46:30 +0100
commit09763eb1eb5d0f9b5284edb08ce76b216b358cc5 (patch)
tree5db921e1d9c736ac8252f656b2e279c1dd396f2e /defparams.pl
parent3aeef0535633570b09014f6858c688c6c8e43f22 (diff)
downloadbugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.gz
bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.xz
Fix for bug 90468: Bugzilla does not log out automatically when closing
the session. Patch by toms@myrealbox.com (Toms Baugis), with minor cleanups by me. r=kiko, a=myk.
Diffstat (limited to 'defparams.pl')
-rw-r--r--defparams.pl18
1 files changed, 18 insertions, 0 deletions
diff --git a/defparams.pl b/defparams.pl
index 5ce5b3104..640f92b97 100644
--- a/defparams.pl
+++ b/defparams.pl
@@ -456,6 +456,24 @@ sub find_languages {
},
{
+ name => 'rememberlogin',
+ desc => 'Controls management of session cookies
+ <ul>
+ <li>on - Session cookies never expire (the user has to login only
+ once per browser).</li>
+ <li>off - Session cookies last until the users session ends (the user
+ will have to login in each new browser session).</li>
+ <li>defaulton/defaultoff - Default behavior as described
+ above, but user can choose whether bugzilla will remember his
+ login or not.</li>
+ </ul>',
+ type => 's',
+ choices => ['on', 'defaulton', 'defaultoff', 'off'],
+ default => 'on',
+ checker => \&check_multi
+ },
+
+ {
name => 'mostfreqthreshold',
desc => 'The minimum number of duplicates a bug needs to show up on the ' .
'<a href="duplicates.cgi">most frequently reported bugs page</a>. ' .