X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/424d6eadbe8a0c863a4f6a4ea5e60a86a309de50..772f08d07f41febb13a52e066036d23faa0490fc:/SL/Dispatcher.pm diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 97a2f45f4..cfb4fb834 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -95,7 +95,7 @@ sub pre_startup_setup { $::auth = SL::Auth->new; $::form = undef; %::myconfig = (); - %::called_subs = (); # currently used for recursion detection + $::request = undef; } $SIG{__WARN__} = sub { @@ -171,8 +171,8 @@ sub handle_request { $::cgi = CGI->new(''); $::locale = Locale->new($::lx_office_conf{system}->{language}); $::form = Form->new; - %::called_subs = (); $::instance_conf = SL::InstanceConfiguration->new; + $::request = { }; my $session_result = $::auth->restore_session; $::auth->create_or_refresh_session; @@ -253,6 +253,7 @@ sub handle_request { $::locale = undef; $::form = undef; $::myconfig = (); + $::request = undef; Form::disconnect_standard_dbh; $::lxdebug->end_request;