X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/60805cf20a495c1d408dbd5ed1e274ba21a71401..0ea2ddad65a7079dbc914a01f07f49b5cd44ec14:/admin.pl diff --git a/admin.pl b/admin.pl old mode 100644 new mode 100755 index da0cbcafc..ef97a15a1 --- a/admin.pl +++ b/admin.pl @@ -1 +1,16 @@ -link login.pl \ No newline at end of file +#!/usr/bin/perl + +use strict; + +BEGIN { + unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML). + push @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version. + push @INC, "SL"; # FCGI won't find modules that are not properly named. Help it by inclduging SL +} + +use SL::Dispatcher; + +SL::Dispatcher::pre_startup(); +SL::Dispatcher::handle_request('CGI'); + +1;