Time displays only when there is an "end date/time"

From semantic-mediawiki.org

The "Start date/time" column/statement is mandatory while the "End date/time" is optional. Still the date/time is displayed only whene both a "Start date/time" and an "End date/time" is given. When only the "Start date/time" is given there is no date/time displayed. Example: http://www.wikiteater.se/index.php/F%C3%B6rest%C3%A4llningar

Is this the correct behaviour?

11:15, 3 November 2012
14:41, 5 November 2012

SRF_EventCalendar.php is perfectly correct. This is an issue with fullcalendar.

The reason for this behavior was because of fullcalendar.min.js (line 4652 in fullcalendar.js):

    if (!event.allDay && seg.isStart) {
        html += ...

This is the js-code for displaying the time in month view. Events without end-time are set to allDay-events. This code only shows the time if it is not an event.allDay. To show the time if there is a start date we can change this to:

    if (event.start && seg.isStart) {
        html += ...

Best regards Martin

00:18, 27 November 2012