Revision fd574abb
Von Moritz Bunkus vor mehr als 14 Jahren hinzugefügt
SL/Dispatcher.pm | ||
---|---|---|
67 | 67 |
# dummy globals |
68 | 68 |
{ |
69 | 69 |
no warnings 'once'; |
70 |
$::userspath = "users"; |
|
71 |
$::templates = "templates"; |
|
72 |
$::memberfile = "users/members"; |
|
73 |
$::menufile = "menu.ini"; |
|
74 |
$::sendmail = "| /usr/sbin/sendmail -t"; |
|
75 |
$::lxdebug = LXDebug->new; |
|
76 |
$::auth = SL::Auth->new; |
|
77 |
%::myconfig = (); |
|
70 |
$::userspath = "users"; |
|
71 |
$::templates = "templates"; |
|
72 |
$::memberfile = "users/members"; |
|
73 |
$::menufile = "menu.ini"; |
|
74 |
$::sendmail = "| /usr/sbin/sendmail -t"; |
|
75 |
$::lxdebug = LXDebug->new; |
|
76 |
$::auth = SL::Auth->new; |
|
77 |
%::myconfig = (); |
|
78 |
%::called_subs = (); |
|
78 | 79 |
} |
79 | 80 |
} |
80 | 81 |
|
Auch abrufbar als: Unified diff
Globale Variable bei jedem Request initialisieren.