Lokale Hashes richtig deklarieren.
authorMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 29 Jan 2007 09:53:27 +0000 (09:53 +0000)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Mon, 29 Jan 2007 09:53:27 +0000 (09:53 +0000)
SL/CA.pm

index 28ffc2e..4f4dbde 100644 (file)
--- a/SL/CA.pm
+++ b/SL/CA.pm
@@ -42,7 +42,7 @@ sub all_accounts {
 
   my ($self, $myconfig, $form) = @_;
 
-  my $amount = ();
+  my %amount;
 
   # connect to database
   my $dbh = $form->dbconnect($myconfig);
@@ -65,7 +65,7 @@ sub all_accounts {
   $sth = $dbh->prepare($query);
   $sth->execute || $form->dberror($query);
 
-  my $gifi = ();
+  my %gifi;
   while (my ($accno, $description) = $sth->fetchrow_array) {
     $gifi{$accno} = $description;
   }