Array
(
[0] => SELECT m.url, n.title, n.text_short, n.text, UNIX_TIMESTAMP(n.date_publish) AS date_publish, UNIX_TIMESTAMP(n.date_expire) AS date_expire, n.author,
m.keywords AS meta_keywords, m.keywords_overwrite AS meta_keywords_overwrite, m.description AS meta_description, m.description_overwrite AS meta_description_overwrite, m.custom AS meta_custom
FROM news AS n
INNER JOIN meta As m ON n.meta_id = m.id
WHERE n.date_publish <= NOW() AND (n.date_expire > NOW() OR n.date_expire IS NULL) AND n.active = ? AND n.hidden = ? AND n.language_id = ?
ORDER BY n.date_publish DESC
LIMIT ?, ?;
[1] => Array
(
[0] => Y
[1] => N
[2] => 2
[3] => -20
[4] => 20
)
)