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 'authors au,
articles_to_topics a2t
' at line 3
select count(*) as total from articles a,
articles_description ad
authors au,
articles_to_topics a2t
left join topics_description td on(a2t.topics_id = td.topics_id and td.language_id = '1')
where a.articles_status = '1'
and (a.articles_date_available IS NULL or to_days(a.articles_date_available) <= to_days(now()))
and au.authors_id = '1'
and a.authors_id = au.authors_id
and a.articles_id = a2t.articles_id
and ad.articles_id = a2t.articles_id
and ad.language_id = '1'