X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/b01d84a98b1091f452adc5857903ea85c1e644f1..HEAD:/dispatcher.pl diff --git a/dispatcher.pl b/dispatcher.pl index 433ffe9d3..a6364ab83 100755 --- a/dispatcher.pl +++ b/dispatcher.pl @@ -2,6 +2,13 @@ use strict; +BEGIN { + use FindBin; + + unshift(@INC, $FindBin::Bin . '/modules/override'); # Use our own versions of various modules (e.g. YAML). + push (@INC, $FindBin::Bin); # '.' will be removed from @INC soon. +} + use SL::Dispatcher; our $dispatcher = SL::Dispatcher->new('CGI');