X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/7c3c6e8d70ee3c45305700eb90f020a16b1dcdd1..cff913a1c984f82558a7d59dec0b8b1a06c5530d:/dispatcher.fpl diff --git a/dispatcher.fpl b/dispatcher.fpl index c83503612..9b7c98b7d 100755 --- a/dispatcher.fpl +++ b/dispatcher.fpl @@ -2,6 +2,14 @@ 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. + push (@INC, $FindBin::Bin . '/modules/fallback'); # Only use our own versions of modules if there's no system version. +} + use SL::Dispatcher; use SL::FCGIFixes; use SL::LXDebug;