[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.65.2.4,1.65.2.5
From: |
Joshua Ferraro |
Subject: |
[Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.65.2.4,1.65.2.5 |
Date: |
Wed, 24 Mar 2004 13:05:11 -0800 |
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;
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.65.2.4,1.65.2.5,
Joshua Ferraro <=