Details
Description
The following query is executed within the 1.6.4 upgrade:
$this->Record->where("id", "=", $ticket->id)->update("support_tickets", array('date_closed' => date("c")));
The date should instead be in Y-m-d H:i:s format in UTC.
$this->SomeModel->dateToUtc(date("c"));
Fixed