sproctor / php-calendar

PHP-Calendar
http://www.php-calendar.org/
Apache License 2.0
138 stars 67 forks source link

Default time box: 12:00 AM - 12:00 AM #102

Closed sessionbug closed 10 years ago

sessionbug commented 10 years ago

When i "Modify Occurrence" a "Full Day" event, changing "Time Type:normal. so in default time box writes: 12:00 AM and 12:00 AM it must be: 5:00 PM - 6:00 PM like adding new event.

Also it is working at event_form.php, default time box: 5:00 PM - 6:00 PM:

at event_form.php on line:171-172 - this code works.

        'start-time' => format_time_string(17, 0, $hour24),
        'end-time' => format_time_string(18, 0, $hour24),

But at occur_form.php it says 12:00 AM - 12:00 AM at occur_form.php on line:96-97 - below code doesn't work, box time must be default 5:00 PM - 6:00 PM:

        'start-time' => format_time_string(17, 0, $hour24),
        'end-time' => format_time_string(18, 0, $hour24),