Revision 0ea2ddad
Von Sven Schöling vor mehr als 14 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
2 | 2 |
|
3 | 3 |
use strict; |
4 | 4 |
|
5 |
BEGIN { |
|
6 |
unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML). |
|
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 |
} |
|
10 |
|
|
5 | 11 |
use CGI qw( -no_xhtml); |
6 | 12 |
use English qw(-no_match_vars); |
7 | 13 |
use SL::Auth; |
Auch abrufbar als: Unified diff
Wo use Form steht muss auch der @INC overload drin sein.