A Database Error Occurred
Error Number: 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 '-11,11' at line 17
SELECT c.id as article_cid, UNIX_TIMESTAMP(a.`publication_date`) as publication_date, a.`title` as title, a.`teaser` as teaser, a.`body` as body, s.`title` as section, a.`urlexterna` as urlexterna, a.`source` as source FROM ( ( `articles` as a INNER JOIN `contents` as c ON a.`id`=c.`item_id` AND c.`item_type`=1 ) INNER JOIN `rel_section_content` as rsc ON rsc.`content_id`=c.`id` ) INNER JOIN `sections` as s ON s.`id`=rsc.`section_id` AND s.`active`=1 WHERE c.`active`=1 AND a.`publication_date` < CURRENT_TIMESTAMP ORDER BY a.`publication_date` DESC LIMIT -11,11