Query failed:
SELECT
e.id,
e.title,
e.timestamp,
e.comments,
e.exflag,
e.authorid,
e.trackbacks,
e.isdraft,
e.allow_comments,
e.last_modified,
a.realname AS author,
a.username AS loginname,
a.email
, e.body, e.extended
FROM
entries AS e
LEFT JOIN authors a
ON e.authorid = a.authorid
LEFT JOIN entrycat ec
ON e.id = ec.entryid
LEFT JOIN category c
ON ec.categoryid = c.categoryid
WHERE isdraft = 'false' AND e.timestamp <= 1337270400
GROUP BY e.id
ORDER BY timestamp DESC
0 / 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 '0' at line 33