X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/d9cd41c59bfa524ab16e1e4a7b76020aaff6ac14..772f08d07f41febb13a52e066036d23faa0490fc:/SL/Dispatcher.pm diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 291953b77..cfb4fb834 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -95,6 +95,7 @@ sub pre_startup_setup { $::auth = SL::Auth->new; $::form = undef; %::myconfig = (); + $::request = undef; } $SIG{__WARN__} = sub { @@ -171,6 +172,7 @@ sub handle_request { $::locale = Locale->new($::lx_office_conf{system}->{language}); $::form = Form->new; $::instance_conf = SL::InstanceConfiguration->new; + $::request = { }; my $session_result = $::auth->restore_session; $::auth->create_or_refresh_session; @@ -251,6 +253,7 @@ sub handle_request { $::locale = undef; $::form = undef; $::myconfig = (); + $::request = undef; Form::disconnect_standard_dbh; $::lxdebug->end_request;