X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=bin%2Fmozilla%2Finstallationcheck.pl;h=f52cc521ddc318a3e814acfa13a9c326868111a4;hb=15aab04c1710b3c8a2bf8785aef31f13a958a43e;hp=ca8c7895a1ff8150337ae9e63e8ed4c856102837;hpb=3a94f4d2dd9a835d4a7007e1b999ea00b3c4e1cd;p=kivitendo-erp.git diff --git a/bin/mozilla/installationcheck.pl b/bin/mozilla/installationcheck.pl index ca8c7895a..f52cc521d 100644 --- a/bin/mozilla/installationcheck.pl +++ b/bin/mozilla/installationcheck.pl @@ -17,21 +17,21 @@ sub verify_installation { use SL::Locale; - my $locale = new Locale($::lx_office_conf{system}->{language}, "installationcheck"); + my $locale = Locale->new($::lx_office_conf{system}->{language}, "installationcheck"); print(qq|content-type: text/html + title="kivitendo stylesheet"> | . $locale->text("One or more Perl modules missing") . qq|

| . $locale->text("One or more Perl modules missing") . qq|

-

| . $locale->text("At least one Perl module that Lx-Office ERP " . +

| . $locale->text("At least one Perl module that kivitendo ERP " . "requires for running is not installed on your " . "system.") . " " . @@ -76,7 +76,7 @@ sub verify_installation { " " . $locale->text("Here's an example command line:") . qq|

-

perl -MCPAN -e "install CGI::Ajax"

+

perl -MCPAN -e "install Config::Std"

| . $locale->text("The third way is to download the module from the " . "above mentioned URL and to install the module " . @@ -87,7 +87,7 @@ sub verify_installation { |); - ::end_of_request(); + $::dispatcher->end_request; } 1;