[Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.65.2.4,1.65.2.5

Joshua Ferraro joshferraro at users.sourceforge.net
Wed Mar 24 22:05:11 CET 2004


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

Modified Files:
      Tag: rel_2_0
	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.65.2.4
retrieving revision 1.65.2.5
diff -C2 -r1.65.2.4 -r1.65.2.5
*** Circ2.pm	26 Feb 2004 10:21:57 -0000	1.65.2.4
--- Circ2.pm	24 Mar 2004 21:05:09 -0000	1.65.2.5
***************
*** 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