$::lxdebug = LXDebug->new;
$::locale = Locale->new($::lx_office_conf{system}->{language});
- $::cgi = CGI->new qw();
$::form = Form->new;
$::auth = SL::Auth->new;
+ $::request = { cgi => CGI->new({}) };
die 'cannot reach auth db' unless $::auth->session_tables_present;
require "bin/mozilla/common.pl";
- die "cannot find user $login" unless %::myconfig = $::auth->read_user($login);
+ die "cannot find user $login" unless %::myconfig = $::auth->read_user(login => $login);
die "cannot find locale for user $login" unless $::locale = Locale->new('de');
}
sub gd_preconfig {
my $self = shift;
- SL::LxOfficeConf->read;
+ SL::LxOfficeConf->read($self->{configfile});
die "Missing section [task_server] in config file" unless $lx_office_conf{task_server};
die "Missing key 'login' in section [task_server] in config file" unless $lx_office_conf{task_server}->{login};