We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a03c493 commit 6e9fe98Copy full SHA for 6e9fe98
sources/AppBundle/Controller/Admin/HomeAction.php
@@ -79,7 +79,7 @@ public function __invoke(): Response
79
80
// Les stats du CFP sont affichés pendant un certain temps après la date de fin de l'appel
81
$dateEndCallForPapers = $event->getDateEndCallForPapers();
82
- if ($dateEndCallForPapers && $dateEndCallForPapers < $this->clock->now()->add(new \DateInterval('P3M'))) {
+ if ($dateEndCallForPapers && $dateEndCallForPapers->add(new \DateInterval('P2M')) > $this->clock->now()) {
83
$cfp['statistics'][$event->getTitle()] = [
84
[
85
'icon' => 'microphone',
0 commit comments