فهرست منبع

Ordre descendant pour les nouveautés

François Drouhard 5 سال پیش
والد
کامیت
b994da0b3d
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      src/Repository/CommentaireRepository.php

+ 1 - 0
src/Repository/CommentaireRepository.php

@@ -16,6 +16,7 @@ class CommentaireRepository extends \Doctrine\ORM\EntityRepository
             ->innerJoin('c.film', 'flm')->addSelect('flm')
             ->innerJoin('c.user', 'usr')->addSelect('usr')
             ->setMaxResults($limit)
+            ->orderBy('c.id', 'DESC')
             ->getQuery()
             ->getResult();
     }