currencies-popup angepasst
authorThomas Kasulke <t.kasulke@linet-services.de>
Fri, 27 Apr 2007 11:54:00 +0000 (11:54 +0000)
committerThomas Kasulke <t.kasulke@linet-services.de>
Fri, 27 Apr 2007 11:54:00 +0000 (11:54 +0000)
bin/mozilla/ir.pl
bin/mozilla/is.pl
bin/mozilla/oe.pl

index faaa3cc..9f40930 100644 (file)
@@ -301,9 +301,10 @@ sub form_header {
  
   %labels = ();
   @values = ();
+  my $i = 0;
   foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
-    push(@values, $item->{"currency"});
-    $labels{$item->{"currency"}} = $item->{"currency"};
+    push(@values, $item);
+    $labels{$item} = $item;
   }
   
   $form->{currency}        = $form->{defaultcurrency} unless $form->{currency};
index 59d4b47..6ecad00 100644 (file)
@@ -369,8 +369,8 @@ sub form_header {
   %labels = ();
   @values = ();
   foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
-    push(@values, $item->{"currency"});
-    $labels{$item->{"currency"}} = $item->{"currency"};
+    push(@values, $item);
+    $labels{$item} = $item;
   }
   
   $form->{currency}        = $form->{defaultcurrency} unless $form->{currency};
index bdb6946..6c7cb65 100644 (file)
@@ -502,9 +502,10 @@ sub form_header {
 
   %labels = ();
   @values = ();
+  my $i = 0;
   foreach my $item (@{ $form->{"ALL_CURRENCIES"} }) {
-    push(@values, $item->{"currency"});
-    $labels{$item->{"currency"}} = $item->{"currency"};
+    push(@values, $item);
+    $labels{$item} = $item;
   }
   
   $form->{currency}        = $form->{defaultcurrency} unless $form->{currency};