X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dispatcher.pl;h=433ffe9d3f1980b410a6676484b04a8de41fc6ae;hb=cc743b5424375dd3eaf5c3765f9372ca2da9890b;hp=05c4a229e0359f9b0c7f63ffb74d9cb5a41c9090;hpb=7a6044728948035cb42964d764c93038e88a914b;p=kivitendo-erp.git diff --git a/dispatcher.pl b/dispatcher.pl deleted file mode 120000 index 05c4a229e..000000000 --- a/dispatcher.pl +++ /dev/null @@ -1 +0,0 @@ -admin.pl \ No newline at end of file diff --git a/dispatcher.pl b/dispatcher.pl new file mode 100755 index 000000000..433ffe9d3 --- /dev/null +++ b/dispatcher.pl @@ -0,0 +1,11 @@ +#!/usr/bin/perl + +use strict; + +use SL::Dispatcher; + +our $dispatcher = SL::Dispatcher->new('CGI'); +$dispatcher->pre_startup; +$dispatcher->handle_request; + +1;