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

Owen Leonard oleonard at athenscounty.lib.oh.us
Tue Apr 18 21:49:13 CEST 2006


CVSROOT:	/sources/koha
Module name:	koha
Branch: 	rel_2_2
Changes by:	Owen Leonard <oleonard at savannah.gnu.org>	06/04/18 19:49:13

Modified files:
	opac           : opac-reserve.pl 

Log message:
	Typo in variable name was blocking reservations by anyone with any fines

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/koha/opac/opac-reserve.pl.diff?only_with_tag=rel_2_2&tr1=1.22.2.8&tr2=1.22.2.9&r1=text&r2=text

Patches:
Index: koha/opac/opac-reserve.pl
diff -u koha/opac/opac-reserve.pl:1.22.2.8 koha/opac/opac-reserve.pl:1.22.2.9
--- koha/opac/opac-reserve.pl:1.22.2.8	Wed Mar  8 13:46:55 2006
+++ koha/opac/opac-reserve.pl	Tue Apr 18 19:49:13 2006
@@ -235,7 +235,7 @@
 } else {
 	# Here we check that the borrower can actually make reserves Stage 1.
 	my $noreserves = 0;
-	my $maxoutstanding = C4::Context->preference("maxoustanding");
+	my $maxoutstanding = C4::Context->preference("maxoutstanding");
 	$template->param(noreserve => 1) unless $maxoutstanding;
 	if ($borr->{'amountoutstanding'} > $maxoutstanding) {
 		my $amount = sprintf "\$%.02f", $borr->{'amountoutstanding'};





More information about the Koha-cvs mailing list