Database error: Invalid SQL:
SELECT
te.article_id,
te.title,
te.code as alias,
ts.path,
ta.name as author_name
FROM
sitemap as ts,
articles as te
LEFT JOIN
authors as ta ON ta.author_id = te.author_id
WHERE
AND
te.node_id = ts.node_id AND
te.article_id != '' AND
te.publish_date <= '' AND
(te.title < '' OR te.publish_date < '')
AND te.active = '1'
ORDER BY te.publish_date DESC, title DESC
LIMIT 1
MySQL Error: 1064 (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 'AND
te.node_id = ts.node_id AND
te.article_id != ' at line 13)
Session halted.