From 1284ac4c8f8628a151758d9713e0a6ef8dfd783c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Fri, 13 May 2011 13:23:51 +0200 Subject: [PATCH] Sessions erst nach dem Request expiren. --- SL/Dispatcher.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index c1f31a4ef..e72897693 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -52,7 +52,6 @@ sub pre_request_checks { show_error('login/auth_db_unreachable'); } } - $::auth->expire_sessions; } sub show_error { @@ -237,6 +236,7 @@ sub handle_request { $::myconfig = (); Form::disconnect_standard_dbh; $::auth->expire_session_keys->save_session; + $::auth->expire_sessions; $::auth->reset; $::lxdebug->end_request; -- 2.20.1