summaryrefslogtreecommitdiffstats
path: root/public
diff options
context:
space:
mode:
authormichael pereira2011-04-15 15:49:18 +0200
committermichael pereira2011-04-15 15:49:18 +0200
commit5df9b7087639ff1e0a9e1df3cb852ec422145cf9 (patch)
treeb28eb4f7af649cd3161d337e0424e25aed08b72c /public
parentTicket #212 Cookie Lifetime wird jetzt bei fbgui auf unbegrenzt gesetzt... (diff)
downloadpbs2-5df9b7087639ff1e0a9e1df3cb852ec422145cf9.tar.gz
pbs2-5df9b7087639ff1e0a9e1df3cb852ec422145cf9.tar.xz
pbs2-5df9b7087639ff1e0a9e1df3cb852ec422145cf9.zip
Ticket 212 Cookie auf 10 Stunden bei fbgui
Diffstat (limited to 'public')
-rw-r--r--public/index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/index.php b/public/index.php
index 9c54b9c..e0a1a7e 100644
--- a/public/index.php
+++ b/public/index.php
@@ -26,7 +26,7 @@ APPLICATION_PATH . '/configs/application.ini'
if(stristr($_SERVER['HTTP_USER_AGENT'],'prebootGUI'))
Zend_Session::setOptions(array('cookie_lifetime' => '3600'));
else
- Zend_Session::setOptions(array('cookie_lifetime' => null));
+ Zend_Session::setOptions(array('cookie_lifetime' => '36000'));
// Run bootstrap
$application->bootstrap()