[ App->wishlist():573 ] SELECT w.object_id,w.strength,w.wish_id,w.cdate,o.name FROM wishes w
LEFT JOIN objects o ON w.object_id = o.object_id
WHERE w.list_id = ORDER BY w.strength DESC,w.cdate DESC You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY w.strength DESC,w.cdate DESC' at line 3
[ App->wishlist():576 ] SELECT l.list_id, COUNT( w.wish_id ) as c,l.title
FROM lists l LEFT JOIN wishes w ON w.list_id = l.list_id
WHERE l.user_id = GROUP BY l.list_id ORDER BY l.cdate ASC You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP BY l.list_id ORDER BY l.cdate ASC' at line 3
[ App->wishlist():598 ] SELECT a.*,u.uid,u.name as uname,o.name,l.title FROM activities a
LEFT JOIN users u ON u.user_id = a.user_id
LEFT JOIN objects o ON o.object_id = a.object_id
LEFT JOIN lists l oN l.list_id = a.list_id
WHERE a.list_id =
ORDER BY a.cdate DESC You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'ORDER BY a.cdate DESC' at line 6