Revision 3e2ecde7
Von Moritz Bunkus vor etwa 12 Jahren hinzugefügt
scripts/console | ||
---|---|---|
$::form = Form->new;
|
||
$::auth = SL::Auth->new;
|
||
$::instance_conf = SL::InstanceConfiguration->new;
|
||
$::request = { cgi => CGI->new({}) };
|
||
$::request = SL::Request->new(
|
||
cgi => CGI->new({}),
|
||
layout => SL::Layout::None->new,
|
||
);
|
||
|
||
die 'cannot reach auth db' unless $::auth->session_tables_present;
|
||
|
Auch abrufbar als: Unified diff
$::request auch in Console als Instanz von SL::Request anlegen