X-Git-Url: https://git.rapsys.eu/airbundle/blobdiff_plain/8a0224b62bc3c7ab6c96d3450c19a4874e2ce183..894549fc5484a8cd2522f0d5b5677093aeb05e8a:/Repository/SessionRepository.php diff --git a/Repository/SessionRepository.php b/Repository/SessionRepository.php index 2a11c59..afe7335 100644 --- a/Repository/SessionRepository.php +++ b/Repository/SessionRepository.php @@ -156,10 +156,14 @@ class SessionRepository extends \Doctrine\ORM\EntityRepository { 'sessions' => [] ]; - //Append month for first day of month + //Detect month change if ($month != $date->format('m')) { $month = $date->format('m'); - $calendar[$Ymd]['title'] .= '/'.$month; + //Append month for first day of month + //XXX: except if today to avoid double add + if ($date->format('U') != strtotime('today')) { + $calendar[$Ymd]['title'] .= '/'.$month; + } } //Deal with today if ($date->format('U') == ($today = strtotime('today'))) { @@ -316,10 +320,14 @@ class SessionRepository extends \Doctrine\ORM\EntityRepository { 'sessions' => [] ]; - //Append month for first day of month + //Detect month change if ($month != $date->format('m')) { $month = $date->format('m'); - $calendar[$Ymd]['title'] .= '/'.$month; + //Append month for first day of month + //XXX: except if today to avoid double add + if ($date->format('U') != strtotime('today')) { + $calendar[$Ymd]['title'] .= '/'.$month; + } } //Deal with today if ($date->format('U') == ($today = strtotime('today'))) {