[Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.69,1.70

Joshua Ferraro joshferraro at users.sourceforge.net
Wed Mar 24 22:06:50 CET 2004


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

Modified Files:
	Circ2.pm 
Log Message:
Fixes Bug 763 (Location will not change) replaced:
$dbh->do("UPDATE items holdingbranch = $tbr WHERE   items.itemnumbe$
        &itemseen($itm);
	with:
$dbh->do("UPDATE items set holdingbranch = $tbr WHERE   items.itemnumbe$
        &itemseen($itm);


Index: Circ2.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Circulation/Circ2.pm,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -r1.69 -r1.70
*** Circ2.pm	6 Mar 2004 21:26:44 -0000	1.69
--- Circ2.pm	24 Mar 2004 21:06:48 -0000	1.70
***************
*** 477,481 ****
  					VALUES ($itm, $fbr, now(), $tbr)");
  	#update holdingbranch in items .....
! 	$dbh->do("UPDATE items holdingbranch = $tbr WHERE	items.itemnumber = $itm");
  	&itemseen($itm);
  	return;
--- 477,481 ----
  					VALUES ($itm, $fbr, now(), $tbr)");
  	#update holdingbranch in items .....
! 	$dbh->do("UPDATE items set holdingbranch = $tbr WHERE	items.itemnumber = $itm");
  	&itemseen($itm);
  	return;





More information about the Koha-cvs mailing list