2 defined entfernt. Der Gebruach ist deprecated, und in diesem Fall eh nicht notwendig.
authorSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Mar 2010 10:24:32 +0000 (11:24 +0100)
committerSven Schöling <s.schoeling@linet-services.de>
Wed, 17 Mar 2010 10:48:23 +0000 (11:48 +0100)
perldoc sagt:

Use of defined  on aggregates (hashes and arrays) is deprecated. It used to report whether memory for that aggregate has ever been allocated. This behavior may disappear in future versions of Perl. You should instead use a simple test for size:

SL/Form.pm

index 32ea04d..ca8d4fc 100644 (file)
@@ -720,7 +720,7 @@ sub _prepare_html_template {
   my ($self, $file, $additional_params) = @_;
   my $language;
 
-  if (!defined(%main::myconfig) || !defined($main::myconfig{"countrycode"})) {
+  if (!%::myconfig || !$::myconfig{"countrycode"}) {
     $language = $main::language;
   } else {
     $language = $main::myconfig{"countrycode"};