Skip to content

Commit 92c4ece

Browse files
authored
Correction du filtrage des talks plannifiées dans l'Admin (#2308)
1 parent fba0907 commit 92c4ece

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sources/AppBundle/Event/Model/Repository/TalkRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,7 @@ public function getByEventWithSpeakersAndVotes(Event $event, string $search = ''
332332
$params["search"] = "%{$search}%";
333333
}
334334
if ($planned) {
335-
$where .= ' AND talk.plannifie = 1 AND (talk.date_publication < NOW() OR talk.date_publication IS NULL)';
335+
$where .= ' AND talk.plannifie = 1';
336336
}
337337
if ($needMentoring) {
338338
$where .= ' AND talk.needs_mentoring = 1';

0 commit comments

Comments
 (0)