Bugs item #1449829, was opened at 2006-03-15 06:31
Message generated for change (Comment added) made by richardarcher
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403611&aid=1449829&group_id=31885
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Data storage container
Group: current CVS
>Status: Closed
>Resolution: Fixed
Priority: 5
Submitted By: CArlos Tineo (ctineo)
>Assigned to: Richard Archer (richardarcher)
Summary: ct_sql.inc 7_4a line 83 bad construction of sql
Initial Comment:
In line 83 ct_sql.inc cvs(2006/14/03) phplib-stable
This line return invalid sql (I work with postgres 7.4)
$squery = sprintf("select count(sid) count from %s
where val='%s' and changed='%s' and sid='%s' and
name='%s'",
Fixed with:
$squery = sprintf("select count(sid) as count from %s
where val='%s' and changed='%s' and sid='%s' and
name='%s'",
----------------------------------------------------------------------
>Comment By: Richard Archer (richardarcher)
Date: 2006-03-15 09:18
Message:
Logged In: YES
user_id=279311
Thank you Carlos, that patch has been committed to CVS.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403611&aid=1449829&group_id=31885
|