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
s_entries AS e
LEFT JOIN s_authors a
ON e.authorid = a.authorid
LEFT JOIN s_entrycat ec
ON e.id = ec.entryid
LEFT JOIN s_category c
ON ec.categoryid = c.categoryid
INNER JOIN s_entrytags AS entrytags ON (e.id = entrytags.entryid) LEFT JOIN s_authorgroups AS acl_a
ON acl_a.authorid = 0
LEFT JOIN s_access AS acl_acc
ON ( acl_acc.artifact_mode = 'read'
AND acl_acc.artifact_type = 'category'
AND acl_acc.artifact_id = c.categoryid
)
WHERE isdraft = 'false' AND e.timestamp <= 1328467200 AND entrytags.tag = _utf8 'sugestão' COLLATE utf8_general_ci AND (
c.categoryid IS NULL
OR ( acl_acc.groupid = 0)
OR ( acl_acc.artifact_id IS NULL
)
)
GROUP BY e.id
ORDER BY timestamp DESC
LIMIT 5 / 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 ''sugestão' COLLATE utf8_general_ci AND (