X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/f89d3512c42a982714177ef491c04216254aba3b..23f79a876613fabf7f4aa2de230788ebeb840de9:/admin.pl diff --git a/admin.pl b/admin.pl index 603d166b2..60c4ff206 100755 --- a/admin.pl +++ b/admin.pl @@ -4,7 +4,8 @@ use strict; use SL::Dispatcher; -SL::Dispatcher::pre_startup(); -SL::Dispatcher::handle_request('CGI'); +my $dispatcher = SL::Dispatcher->new('CGI'); +$dispatcher->pre_startup; +$dispatcher->handle_request; 1;