X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/60805cf20a495c1d408dbd5ed1e274ba21a71401..6dd6719d91cf5a48acb6fb3731f9e143d7a7d83b:/admin.pl diff --git a/admin.pl b/admin.pl old mode 100644 new mode 100755 index da0cbcafc..433ffe9d3 --- a/admin.pl +++ b/admin.pl @@ -1 +1,11 @@ -link login.pl \ No newline at end of file +#!/usr/bin/perl + +use strict; + +use SL::Dispatcher; + +our $dispatcher = SL::Dispatcher->new('CGI'); +$dispatcher->pre_startup; +$dispatcher->handle_request; + +1;