X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/8e009de46807bec412ef3c3d449648b18c4ad01a..refs/heads/b-3.3.0:/admin.pl diff --git a/admin.pl b/admin.pl index 603d166b2..433ffe9d3 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'); +our $dispatcher = SL::Dispatcher->new('CGI'); +$dispatcher->pre_startup; +$dispatcher->handle_request; 1;