From: Sven Schöling Date: Thu, 13 Jan 2011 15:44:57 +0000 (+0100) Subject: Dispatcher bruacht kein SL/ include, wenn Form in der korrekten Form "SL::Form" einge... X-Git-Tag: release-2.6.2beta2^2~6 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=12dadc47affa16838fe12aaf3e5523fa8b48e9ae;p=kivitendo-erp.git Dispatcher bruacht kein SL/ include, wenn Form in der korrekten Form "SL::Form" eingebunden wird. --- diff --git a/SL/Dispatcher.pm b/SL/Dispatcher.pm index 4a3f131d3..2389b1100 100644 --- a/SL/Dispatcher.pm +++ b/SL/Dispatcher.pm @@ -5,7 +5,6 @@ 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 CGI qw( -no_xhtml); @@ -14,7 +13,7 @@ use SL::Auth; use SL::LXDebug; use SL::Locale; use SL::Common; -use Form; +use SL::Form; use List::Util qw(first); use File::Basename;