From: Dylan William Hardison Date: Fri, 1 Mar 2019 23:32:38 +0000 (-0500) Subject: no bug - set session expiration to 1 week X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c02f8aad7edcd5cf4415749660a929279c208be7;p=thirdparty%2Fbugzilla.git no bug - set session expiration to 1 week --- diff --git a/Bugzilla/App.pm b/Bugzilla/App.pm index 3ab46150a..68a3199fb 100644 --- a/Bugzilla/App.pm +++ b/Bugzilla/App.pm @@ -55,6 +55,7 @@ sub startup { push @{$self->renderer->paths}, @{ Bugzilla::Template::_include_path() }; $self->sessions->cookie_name('bugzilla'); + $self->sessions->default_expiration(60 * 60 * 24 * 7); # 1 week $self->hook( before_routes => sub {