From f470df25a3d26378188c96b60aed16e339919cdd Mon Sep 17 00:00:00 2001 From: vgreb Date: Tue, 30 Jun 2026 18:21:21 +0200 Subject: [PATCH] =?UTF-8?q?Correction=20du=20filtrage=20des=20talks=20plan?= =?UTF-8?q?nifi=C3=A9es=20dans=20l'Admin?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit On ne filtre plus par la date --- sources/AppBundle/Event/Model/Repository/TalkRepository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources/AppBundle/Event/Model/Repository/TalkRepository.php b/sources/AppBundle/Event/Model/Repository/TalkRepository.php index 3a4a6aea3..4a4627697 100644 --- a/sources/AppBundle/Event/Model/Repository/TalkRepository.php +++ b/sources/AppBundle/Event/Model/Repository/TalkRepository.php @@ -332,7 +332,7 @@ public function getByEventWithSpeakersAndVotes(Event $event, string $search = '' $params["search"] = "%{$search}%"; } if ($planned) { - $where .= ' AND talk.plannifie = 1 AND (talk.date_publication < NOW() OR talk.date_publication IS NULL)'; + $where .= ' AND talk.plannifie = 1'; } if ($needMentoring) { $where .= ' AND talk.needs_mentoring = 1';