[Koha-cvs] koha/opac opac-reserve.pl [rel_2_2]

Chris Cormack crc at liblime.com
Thu Apr 26 05:12:55 CEST 2007


CVSROOT:	/sources/koha
Module name:	koha
Branch:		rel_2_2
Changes by:	Chris Cormack <rangi>	07/04/26 03:12:55

Modified files:
	opac           : opac-reserve.pl 

Log message:
	Does anyone know why the fee is hardcoded to 0, if all items are chosen as reserved?

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/opac/opac-reserve.pl?cvsroot=koha&only_with_tag=rel_2_2&r1=1.22.2.11&r2=1.22.2.12

Patches:
Index: opac-reserve.pl
===================================================================
RCS file: /sources/koha/koha/opac/opac-reserve.pl,v
retrieving revision 1.22.2.11
retrieving revision 1.22.2.12
diff -u -b -r1.22.2.11 -r1.22.2.12
--- opac-reserve.pl	20 Apr 2007 00:58:53 -0000	1.22.2.11
+++ opac-reserve.pl	26 Apr 2007 03:12:55 -0000	1.22.2.12
@@ -226,7 +226,7 @@
 	    $proceed = 1;
 	} elsif ($query->param('all')) {
 		$template->param(all => 1);
-		$fee = 0;
+		$fee = 0;    # why is this hardcoded in? Shouldnt it be from a systempreference ? Or from CalcReserveFee?
 		$proceed = 1;
 	}
 	if ($proceed && $branch) {





More information about the Koha-cvs mailing list