adesigns / calendar-bundle

This bundle allows you to integrate the jQuery FullCalendar plugin into your Symfony2 application.
MIT License
97 stars 60 forks source link

End date events with one day less #36

Open IndianJo opened 8 years ago

IndianJo commented 8 years ago

I use the tag 1.2-beta version because I need to use the full calendar with translation setting.

When I add event to the EventEntity with

$eventEntity = new EventEntity($title, $startDate, $endDate);

The end date was display with one day less.

For example :

Event :

Test start : 01-02-2015 end : 05-02-2015

The event display :

start : 01-02-2015 end : 04-02-2015

I try my code with version 1.1 event is correctly display.