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 'order by a.articles_date_added desc
limit 5' at line 14
select a.articles_id, ad.articles_name, ad.feed_caption
from articles a
join authors au on a.authors_id = au.authors_id
join articles_description ad on a.articles_id = ad.articles_id
join articles_to_topics a2t on a.articles_id = a2t.articles_id
join topics_description td on a2t.topics_id = td.topics_id
JOIN virtual_sites_content vsc on vsc.content_id = a.articles_id AND vsc.content_table = 'articles'
where
ad.language_id = '1' AND
td.language_id = '1' AND
a2t.topics_id = '7' AND
a.articles_date_added > '2008-01-01' AND
vsc.virtual_sites_id =
order by a.articles_date_added desc
limit 5
TEP_DB_ERRORR