X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/3c928cee12ddff520ebee5562828944317677676..fa6fbcf43be31509708900949ddbf58ca4e3eeef:/scripts/task_server.pl diff --git a/scripts/task_server.pl b/scripts/task_server.pl index 6fe606791..5854a5197 100755 --- a/scripts/task_server.pl +++ b/scripts/task_server.pl @@ -40,9 +40,9 @@ sub lxinit { $::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; @@ -50,7 +50,7 @@ sub lxinit { 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'); } @@ -85,7 +85,7 @@ sub drop_privileges { 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};