Selaa lähdekoodia

On remets le tri dans le bon sens

François 6 vuotta sitten
vanhempi
commit
a18bde35dd
1 muutettua tiedostoa jossa 1 lisäystä ja 1 poistoa
  1. 1 1
      src/AppBundle/Controller/VideothequeController.php

+ 1 - 1
src/AppBundle/Controller/VideothequeController.php

@@ -28,7 +28,7 @@ class VideothequeController extends Controller
 	{
 		$em = $this->getDoctrine()->getManager();
 		$repo = $em->getRepository('AppBundle:Film');
-		$listeFilms = $repo->findTousDesc();
+		$listeFilms = $repo->findAll();
 
 		return $this->render('@App/videotheque/liste.html.twig', array(
 			'listeFilms'	=>	$listeFilms