[Koha-cvs] CVS: koha/C4 Reserves2.pm,1.8,1.9

Finlay Thompson finlayt at users.sourceforge.net
Wed Jul 24 05:01:19 CEST 2002


Update of /cvsroot/koha/koha/C4
In directory usw-pr-cvs1:/tmp/cvs-serv29249/C4

Modified Files:
	Reserves2.pm 
Log Message:

fixed bug that kept asigning reserved books to the same person!



Index: Reserves2.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Reserves2.pm,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -r1.8 -r1.9
*** Reserves2.pm	2 Jul 2002 15:46:42 -0000	1.8
--- Reserves2.pm	24 Jul 2002 03:01:17 -0000	1.9
***************
*** 80,84 ****
  		return ("Waiting", $res);
  	    } else {
! 		if ($res->{'priority'} < $priority) {
  		    $priority = $res->{'priority'};
  		    $highest = $res;
--- 80,84 ----
  		return ("Waiting", $res);
  	    } else {
! 		if ($res->{'priority'} != 0 && $res->{'priority'} < $priority) {
  		    $priority = $res->{'priority'};
  		    $highest = $res;





More information about the Koha-cvs mailing list