[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] koha/C4/Circulation Circ2.pm [rel_2_2]
From: |
Ryan Higgins |
Subject: |
[Koha-cvs] koha/C4/Circulation Circ2.pm [rel_2_2] |
Date: |
Fri, 13 Apr 2007 02:43:36 +0000 |
CVSROOT: /sources/koha
Module name: koha
Branch: rel_2_2
Changes by: Ryan Higgins <rych> 07/04/13 02:43:36
Modified files:
C4/Circulation : Circ2.pm
Log message:
fix typo in fixoverduesonreturn sql
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/koha/C4/Circulation/Circ2.pm?cvsroot=koha&only_with_tag=rel_2_2&r1=1.87.2.22&r2=1.87.2.23
Patches:
Index: Circ2.pm
===================================================================
RCS file: /sources/koha/koha/C4/Circulation/Attic/Circ2.pm,v
retrieving revision 1.87.2.22
retrieving revision 1.87.2.23
diff -u -b -r1.87.2.22 -r1.87.2.23
--- Circ2.pm 26 Feb 2007 22:23:47 -0000 1.87.2.22
+++ Circ2.pm 13 Apr 2007 02:43:36 -0000 1.87.2.23
@@ -3,7 +3,7 @@
package C4::Circulation::Circ2;
-# $Id: Circ2.pm,v 1.87.2.22 2007/02/26 22:23:47 rangi Exp $
+# $Id: Circ2.pm,v 1.87.2.23 2007/04/13 02:43:36 rych Exp $
#package to deal with Returns
#written 3/11/99 by address@hidden
@@ -1227,7 +1227,7 @@
$sth->execute($brn,$itm);
# alter fine to show that the book has been returned
if (my $data = $sth->fetchrow_hashref) {
- my $usth=$dbh->prepare("update accountlines set accounttype='F'
where (borrowernumber = ?) and (itemnumber = ?) and (acccountno = ?)");
+ my $usth=$dbh->prepare("update accountlines set accounttype='F'
where (borrowernumber = ?) and (itemnumber = ?) and (accountno = ?)");
$usth->execute($brn,$itm,$data->{'accountno'});
$usth->finish();
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] koha/C4/Circulation Circ2.pm [rel_2_2],
Ryan Higgins <=