Browse Source

Correction choix liste

François Drouhard 3 years ago
parent
commit
cbaf67c62a
1 changed files with 5 additions and 4 deletions
  1. 5 4
      src/Controller/VideothequeController.php

+ 5 - 4
src/Controller/VideothequeController.php

@@ -28,10 +28,11 @@ class VideothequeController extends AbstractController
 	public function listeAction(Request $request, FilmRepository $repo)
 	{
         $listeFilms = $repo->findTous();
-        if ($this->isGranted('IS_AUTHENTICATED_FULLY') && $this->getUser()->getProfile()->getView() === 0) {
-            $type = "tableaux";
-        } else {
-            $type = "vignettes";
+        $type = "vignettes";
+        if ($this->isGranted('IS_AUTHENTICATED_FULLY')) {
+            if ($this->getUser()->getProfile()->getView() === 0) {
+                $type = "tableaux";
+            }
         }
 
 		return $this->render("videotheque/liste_$type.html.twig", array(