Revision 12dadc47
Von Sven Schöling vor fast 14 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
5 | 5 |
BEGIN { |
6 | 6 |
unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML). |
7 | 7 |
push @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version. |
8 |
push @INC, "SL"; # FCGI won't find modules that are not properly named. Help it by inclduging SL |
|
9 | 8 |
} |
10 | 9 |
|
11 | 10 |
use CGI qw( -no_xhtml); |
... | ... | |
14 | 13 |
use SL::LXDebug; |
15 | 14 |
use SL::Locale; |
16 | 15 |
use SL::Common; |
17 |
use Form; |
|
16 |
use SL::Form;
|
|
18 | 17 |
use List::Util qw(first); |
19 | 18 |
use File::Basename; |
20 | 19 |
|
Auch abrufbar als: Unified diff
Dispatcher bruacht kein SL/ include, wenn Form in der korrekten Form "SL::Form" eingebunden wird.