Bugs item #1449829, was opened at 2006-03-14 15:31
Message generated for change (Tracker Item Submitted) made by Item Submitter
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: Open
Resolution: None
Priority: 5
Submitted By: CArlos Tineo (ctineo)
Assigned to: Nobody/Anonymous (nobody)
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'",
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=403611&aid=1449829&group_id=31885
|