-
Time error when creating an Incident
When an incident is created there is an error in the time value recorded.
The problem is caused by a small error in the file /include/functions_calendar.php
Line 46 reads:
 return date (“Y-m-d H:m:s”, $unixtime);
when it should read:
 return date (“Y-m-d H:i:s”, $unixtime);The error results in the value of the month instead of the minutes value.
Changing m to i as shown above, corrects this.