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