[Koha-cvs] CVS: koha/circ circulation.pl,1.64.2.2,1.64.2.3

Owen Leonard oleonard at users.sourceforge.net
Wed Jan 28 22:50:20 CET 2004


Update of /cvsroot/koha/koha/circ
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4921/circ

Modified Files:
      Tag: rel_2_0
	circulation.pl 
Log Message:
Fix for Bug 661. Set three variables for the template: gna, lost, and dbarred

Index: circulation.pl
===================================================================
RCS file: /cvsroot/koha/koha/circ/circulation.pl,v
retrieving revision 1.64.2.2
retrieving revision 1.64.2.3
diff -C2 -r1.64.2.2 -r1.64.2.3
*** circulation.pl	26 Jan 2004 19:29:17 -0000	1.64.2.2
--- circulation.pl	28 Jan 2004 21:50:17 -0000	1.64.2.3
***************
*** 410,413 ****
--- 410,428 ----
  			color => $color,
  			 );
+ 		if ($flag eq 'GNA'){
+ 			$template->param(
+ 				gna => 'true'
+ 				);
+ 			}
+ 		if ($flag eq 'LOST'){
+ 			$template->param(
+ 				lost => 'true'
+ 			);
+ 			}
+ 		if ($flag eq 'DBARRED'){
+ 			$template->param(
+ 				dbarred => 'true'
+ 			);
+ 			}
  		if ($flag eq 'CHARGES') {
  			$template->param(





More information about the Koha-cvs mailing list