From a81943b3e6e31ef9431ca1051bc2ebb98ced44c4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Rapha=C3=ABl=20Gertz?= Date: Mon, 23 Aug 2021 09:49:47 +0200 Subject: [PATCH] Add locale to allow snippet fetching --- Controller/UserController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/UserController.php b/Controller/UserController.php index 7d38c02..3ed64c7 100644 --- a/Controller/UserController.php +++ b/Controller/UserController.php @@ -149,7 +149,7 @@ class UserController extends DefaultController { //Fetch calendar //TODO: highlight with current session route parameter - $calendar = $doctrine->getRepository(Session::class)->fetchUserCalendarByDatePeriod($this->translator, $period, $isGuest?$id:null, $request->get('session')); + $calendar = $doctrine->getRepository(Session::class)->fetchUserCalendarByDatePeriod($this->translator, $period, $isGuest?$id:null, $request->get('session'), $request->getLocale()); //Fetch locations //XXX: we want to display all active locations anyway -- 2.41.0