installationcheck strict
authorSven Schöling <s.schoeling@linet-services.de>
Thu, 22 Oct 2009 15:01:05 +0000 (17:01 +0200)
committerSven Schöling <s.schoeling@linet-services.de>
Thu, 22 Oct 2009 15:01:05 +0000 (17:01 +0200)
bin/mozilla/installationcheck.pl

index 71f3c01..54a9211 100644 (file)
@@ -1,10 +1,14 @@
 use SL::InstallationCheck;
 
+use strict;
+
 sub verify_installation {
   my $script = $0;
   $script =~ s|.*/||;
 
-  return unless ($form{"action"} && ($script eq "login.pl"));
+  my $form     = $main::form;
+
+  return unless ($form->{"action"} && ($script eq "login.pl"));
 
   SL::InstallationCheck::check_for_conditional_dependencies();
 
@@ -12,7 +16,7 @@ sub verify_installation {
   return if (scalar(@missing_modules) == 0);
 
   use SL::Locale;
-  my $locale = new Locale($language, "installationcheck");
+  my $locale = new Locale($main::language, "installationcheck");
 
   print(qq|content-type: text/html