Commit d53993fc authored by Johnny Leveneur's avatar Johnny Leveneur
Browse files

...

parent c8b8c900
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -187,9 +187,9 @@ class Evenement implements HistoriqueAwareInterface, HasEtatsInterface, Resource
            return 'Date non définie';
        }
        if($this->jourDebut == $this->jourFin) {
            return $this->jourDebut->format('d/m/Y');
            return 'le ' . $this->jourDebut->format('d/m/Y');
        }else{
            return $this->jourDebut->format('d/m/Y') . ' au ' . $this->jourFin->format('d/m/Y');
            return 'du ' . $this->jourDebut->format('d/m/Y') . ' au ' . $this->jourFin->format('d/m/Y');
        }
    }