Explorar el Código

Ordre descendant pour les nouveautés

François Drouhard hace 5 años
padre
commit
b994da0b3d
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  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();
     }