koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Koha-cvs] koha/acqui acqui-home.pl


From: Antoine Farnault
Subject: [Koha-cvs] koha/acqui acqui-home.pl
Date: Thu, 27 Jul 2006 13:29:51 +0000

CVSROOT:        /sources/koha
Module name:    koha
Changes by:     Antoine Farnault <toins>        06/07/27 13:29:51

Modified files:
        acqui          : acqui-home.pl 

Log message:
        syntax error fixed. 

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/acqui/acqui-home.pl?cvsroot=koha&r1=1.13&r2=1.14

Patches:
Index: acqui-home.pl
===================================================================
RCS file: /sources/koha/koha/acqui/acqui-home.pl,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -b -r1.13 -r1.14
--- acqui-home.pl       25 Jul 2006 12:41:55 -0000      1.13
+++ acqui-home.pl       27 Jul 2006 13:29:51 -0000      1.14
@@ -15,7 +15,7 @@
 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
 # Suite 330, Boston, MA  02111-1307 USA
 
-# $Id: acqui-home.pl,v 1.13 2006/07/25 12:41:55 toins Exp $
+# $Id: acqui-home.pl,v 1.14 2006/07/27 13:29:51 toins Exp $
 
 
 =head1 NAME
@@ -99,8 +99,8 @@
 my @loop_currency = ();
 for ( my $i = 0 ; $i < $count ; $i++ ) {
     my %line;
-    $line{currency} = @rates[$i]->{'currency'};
-    $line{rate}     = @rates[$i]->{'rate'};
+    $line{currency} = $rates[$i]->{'currency'};
+    $line{rate}     = $rates[$i]->{'rate'};
     push @loop_currency, \%line;
 }
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]