From 12dadc47affa16838fe12aaf3e5523fa8b48e9ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?Sven=20Sch=C3=B6ling?= Date: Thu, 13 Jan 2011 16:44:57 +0100 Subject: [PATCH] Dispatcher bruacht kein SL/ include, wenn Form in der korrekten Form "SL::Form" eingebunden wird. --- SL/Dispatcher.pm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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; -- 2.20.1