From: Moritz Bunkus Date: Wed, 29 Dec 2010 12:04:31 +0000 (+0100) Subject: Session immer herstellen und refreshen, auch wenn System gesperrt ist X-Git-Tag: release-2.6.2beta1~46^2~1 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=fa438d5021131074e3e10e71eb8f31887fa69f9d;p=kivitendo-erp.git Session immer herstellen und refreshen, auch wenn System gesperrt ist Fix für Bug 1467. --- diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 98c93d4f4..35284db4b 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -149,16 +149,16 @@ sub handle_request { pre_request_checks(); eval { + my $session_result = $::auth->restore_session; + $::auth->create_or_refresh_session; + $::form->error($::locale->text('System currently down for maintenance!')) if -e "$::userspath/nologin" && $script ne 'admin'; if ($script eq 'login' or $script eq 'admin' or $script eq 'kopf') { $::form->{titlebar} = "Lx-Office " . $::locale->text('Version') . " $::form->{version}"; - ::run($::auth->restore_session); + ::run($session_result); } else { - # copy from am.pl routines - my $session_result = $::auth->restore_session; - show_error('login/password_error', 'session') if SL::Auth::SESSION_EXPIRED == $session_result; %::myconfig = $::auth->read_user($::form->{login});