X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;ds=sidebyside;f=dispatcher.pl;h=433ffe9d3f1980b410a6676484b04a8de41fc6ae;hb=c2eb03d45b1602b75a2a3074d5baaf650f1eb631;hp=603d166b2ca7a63d4c7f36408ee3ca41741e849e;hpb=606b8c863c09af323cddc03167106bc178b9fb3b;p=kivitendo-erp.git diff --git a/dispatcher.pl b/dispatcher.pl index 603d166b2..433ffe9d3 100755 --- a/dispatcher.pl +++ b/dispatcher.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;