X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=scripts%2Ftask_server.pl;h=9bf2cb38461005e1320dce03183ed9611963c71d;hb=388a2ff5471adc27084f77e60fe154f25790dc9e;hp=6fe606791f5e8cbf954e174bfdd53d8713aed4ea;hpb=3c928cee12ddff520ebee5562828944317677676;p=kivitendo-erp.git diff --git a/scripts/task_server.pl b/scripts/task_server.pl index 6fe606791..9bf2cb384 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; @@ -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};