]> Raphaƫl G. Git Repositories - blogbundle/blobdiff - Repository/ArticleRepository.php
Use entity id as last resort sorting parameter
[blogbundle] / Repository / ArticleRepository.php
index a19d63c8f9d989a53b7043065b8a9be8899d7a05..a2e1a5eb3576e9168eb0ea60755eb7544d14f38b 100644 (file)
@@ -79,7 +79,7 @@ LEFT JOIN RapsysBlogBundle:ArticleKeyword AS ak ON (ak.article_id = a.id)
 LEFT JOIN RapsysBlogBundle:Keyword AS k ON (k.id = ak.keyword_id)
 LEFT JOIN RapsysBlogBundle:KeywordTranslation AS kt ON (kt.keyword_id = k.id AND kt.locale = :locale)
 GROUP BY a.id
-ORDER BY updated, created DESC
+ORDER BY updated, created DESC, a.id
 LIMIT :offset, :count
 SQL;