X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/7a6044728948035cb42964d764c93038e88a914b..refs/heads/order_controller:/dispatcher.pl 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;