From: Sven Schöling Date: Tue, 17 May 2011 08:29:30 +0000 (+0200) Subject: Bug 1653: $::form erst zerstören nachdem die sessions up-to-date sind. X-Git-Tag: release-2.6.3~25^2~24 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=91c07c66ec20c0e50368b5324aca12b78419d883;p=kivitendo-erp.git Bug 1653: $::form erst zerstören nachdem die sessions up-to-date sind. --- diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 47c2e2a35..df8cc8344 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -231,13 +231,14 @@ sub handle_request { }; # cleanup + $::auth->expire_session_keys->save_session; + $::auth->expire_sessions; + $::auth->reset; + $::locale = undef; $::form = undef; $::myconfig = (); Form::disconnect_standard_dbh; - $::auth->expire_session_keys->save_session; - $::auth->expire_sessions; - $::auth->reset; $::lxdebug->end_request; $::lxdebug->leave_sub;