[ArticleDao::articles]
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '-10, 10' at line 1
SELECT a.id_article, CONCAT(u.prenom, " ", UPPER(u.nom)) AS auteur, u.email AS email_auteur, a.titre, a.url, a.publication, a.contenu, a.actif, a.modification FROM articles a LEFT JOIN utilisateurs u ON (a.utilisateur_id = u.id_utilisateur AND u.suppression = "0000-00-00 00:00:00") WHERE a.suppression = "0000-00-00 00:00:00" AND a.actif = :statut ORDER BY publication DESC LIMIT :offset, :size