Skip to content

Commit bf2c204

Browse files
committed
[Core] fixed tz_date data type conversion, ref #627
1 parent 681e591 commit bf2c204

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

module/Core/src/Repository/DoctrineMongoODM/Types/TimezoneAwareDate.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -117,12 +117,13 @@ public function closureToPhp(): string
117117
/* CODE FROM: ' . __METHOD__ . ' */
118118
if (!is_array($value)
119119
|| !isset($value["date"])
120-
|| !$value["date"] instanceOf UTCDateTime
120+
|| is_null($value["date"])
121121
|| !isset($value["tz"])
122122
) {
123123
$return = null;
124124
} else {
125-
$date = new \DateTime("@".$value["date"]->sec);
125+
//$date = new \DateTime($value["date"]);
126+
$date = $value["date"]->toDateTime();
126127
$date->setTimezone(new \DateTimeZone($value["tz"]));
127128
$return = $date;
128129
}

0 commit comments

Comments
 (0)