[Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.91,1.92

Chris Cormack rangi at users.sourceforge.net
Sun May 15 00:26:09 CEST 2005


Update of /cvsroot/koha/koha/C4/Circulation
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv25067

Modified Files:
	Circ2.pm 
Log Message:
Another little error that was throwing annoying warns


Index: Circ2.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v
retrieving revision 1.91
retrieving revision 1.92
diff -C2 -r1.91 -r1.92
*** Circ2.pm	4 May 2005 15:39:07 -0000	1.91
--- Circ2.pm	14 May 2005 22:26:07 -0000	1.92
***************
*** 229,233 ****
  	$sth->execute;
  	while (my ($bit, $flag) = $sth->fetchrow) {
! 		if ($borrower->{'flags'} & 2**$bit) {
  		$accessflagshash->{$flag}=1;
  		}
--- 229,233 ----
  	$sth->execute;
  	while (my ($bit, $flag) = $sth->fetchrow) {
! 		if ($borrower->{'flags'} && $borrower->{'flags'} & 2**$bit) {
  		$accessflagshash->{$flag}=1;
  		}





More information about the Koha-cvs mailing list