[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Koha-cvs] CVS: koha/C4 Catalogue.pm,1.35,1.36
From: |
Paul POULAIN |
Subject: |
[Koha-cvs] CVS: koha/C4 Catalogue.pm,1.35,1.36 |
Date: |
Mon, 24 Nov 2003 08:24:27 -0800 |
Update of /cvsroot/koha/koha/C4
In directory sc8-pr-cvs1:/tmp/cvs-serv22451/C4
Modified Files:
Catalogue.pm
Log Message:
execute($var) with ? bugfix
Index: Catalogue.pm
===================================================================
RCS file: /cvsroot/koha/koha/C4/Catalogue.pm,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -r1.35 -r1.36
*** Catalogue.pm 10 Jul 2003 10:19:21 -0000 1.35
--- Catalogue.pm 24 Nov 2003 16:24:24 -0000 1.36
***************
*** 441,448 ****
my ($bi,$bib)address@hidden;
my $dbh = C4::Context->dbh;
! my $query="Select ordernumber from aqorders where biblionumber=$bib and
! biblioitemnumber='$bi'";
my $sth=$dbh->prepare($query);
! $sth->execute;
# FIXME - Use fetchrow_array(), since we're only interested in the one
# value.
--- 441,447 ----
my ($bi,$bib)address@hidden;
my $dbh = C4::Context->dbh;
! my $query="Select ordernumber from aqorders where biblionumber=? and
biblioitemnumber=?";
my $sth=$dbh->prepare($query);
! $sth->execute($bib,$bi);
# FIXME - Use fetchrow_array(), since we're only interested in the one
# value.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Koha-cvs] CVS: koha/C4 Catalogue.pm,1.35,1.36,
Paul POULAIN <=