neuen Artikel aus Angebots-/Auftrags-Maske anlegen: Variable besser benannt
[kivitendo-erp.git] / bin / mozilla / installationcheck.pl
index ca8c789..f52cc52 100644 (file)
@@ -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
 
 <html>
  <head>
   <link rel="stylesheet" href="css/lx-office-erp.css" type="text/css"
-        title="Lx-Office stylesheet">
+        title="kivitendo stylesheet">
   <title>| . $locale->text("One or more Perl modules missing") . qq|</title>
  </head>
  <body>
 
   <h1>| . $locale->text("One or more Perl modules missing") . qq|</h1>
 
-  <p>| . $locale->text("At least one Perl module that Lx-Office ERP " .
+  <p>| . $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|</p>
 
-  <p><code>perl -MCPAN -e &quot;install CGI::Ajax&quot;</code></p>
+  <p><code>perl -MCPAN -e &quot;install Config::Std&quot;</code></p>
 
   <p>| . $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 {
 </html>
 |);
 
-  ::end_of_request();
+  $::dispatcher->end_request;
 }
 
 1;