I've noticed that the export of the FAQ's doesn't work. The reason is in the sql-query in _getSQLQuery() in FAQ.php. I don't think you need a JOIN, you could simply do it like this (starting from the WHERE caluse):
Code: Select all
FROM faqdata, faqvisits, faqcategoryrelations
WHERE faqdata.id = faqcategoryrelations.record_id
AND faqdata.lang = faqcategoryrelations.record_lang
AND faqdata.date_start <= '".$now."'
AND faqdata.date_end >= '".$now."' AND "...