diff options
author | kiko%async.com.br <> | 2004-01-17 06:46:30 +0000 |
---|---|---|
committer | kiko%async.com.br <> | 2004-01-17 06:46:30 +0000 |
commit | 09763eb1eb5d0f9b5284edb08ce76b216b358cc5 (patch) | |
tree | 5db921e1d9c736ac8252f656b2e279c1dd396f2e /defparams.pl | |
parent | Fix for bug 229998: bugzilla-submit 'Operating-System' and 'URL' fields (diff) | |
download | bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.gz bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.tar.bz2 bugzilla-09763eb1eb5d0f9b5284edb08ce76b216b358cc5.zip |
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.pl | 18 |
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>. ' . |