[Koha-cvs] koha/C4 Reserves2.pm [rel_2_2]

Joshua Ferraro jmf at kados.org
Thu Aug 3 05:53:16 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	Joshua Ferraro <kados>	06/08/03 03:53:16

Modified files:
	C4             : Reserves2.pm 

Log message:
	fix for bug   	 1017 Reserve fee in accounts

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Reserves2.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.38&r2=1.38.2.1

Patches:
Index: Reserves2.pm
===================================================================
RCS file: /sources/koha/koha/C4/Reserves2.pm,v
retrieving revision 1.38
retrieving revision 1.38.2.1
diff -u -b -r1.38 -r1.38.2.1
--- Reserves2.pm	15 Dec 2004 10:47:09 -0000	1.38
+++ Reserves2.pm	3 Aug 2006 03:53:16 -0000	1.38.2.1
@@ -3,7 +3,7 @@
 
 package C4::Reserves2;
 
-# $Id: Reserves2.pm,v 1.38 2004/12/15 10:47:09 tipaul Exp $
+# $Id: Reserves2.pm,v 1.38.2.1 2006/08/03 03:53:16 kados Exp $
 
 # Copyright 2000-2002 Katipo Communications
 #
@@ -524,7 +524,7 @@
     (borrowernumber,accountno,date,amount,description,accounttype,amountoutstanding)
 						          values
     (?,?,now(),?,?,'Res',?)");
-    $usth->execute($borrnum,$nextacctno,$fee,'Reserve Charge - $title',$fee);
+    $usth->execute($borrnum,$nextacctno,$fee,'Reserve Charge -'.$title,$fee);
     $usth->finish;
   }
   #if ($const eq 'a'){





More information about the Koha-cvs mailing list