Преглед на файлове

On remets le tri dans le bon sens

François преди 6 години
родител
ревизия
a18bde35dd
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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