koha-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

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


From: Joshua Ferraro
Subject: [Koha-cvs] CVS: koha/C4/Circulation Circ2.pm,1.69,1.70
Date: Wed, 24 Mar 2004 13:06:50 -0800

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;




reply via email to

[Prev in Thread] Current Thread [Next in Thread]