1
0
Fork 0
mirror of synced 2025-04-03 13:23:37 +03:00

[#DWEB-103] Fixed UTC timezone creation. Constant DateTimeZone::UTC is 1024, string name is required for the DateTimeZone constructor.

This commit is contained in:
gedrox 2012-04-11 10:02:42 +03:00
parent e168b4e543
commit 429ac54a34

View file

@ -98,7 +98,7 @@ the UTC time at the time of the booking and the timezone the event happend in.
return $value->format($platform->getDateTimeFormatString(), return $value->format($platform->getDateTimeFormatString(),
(self::$utc) ? self::$utc : (self::$utc = new \DateTimeZone(\DateTimeZone::UTC)) (self::$utc) ? self::$utc : (self::$utc = new \DateTimeZone('UTC'))
); );
} }
@ -111,7 +111,7 @@ the UTC time at the time of the booking and the timezone the event happend in.
$val = \DateTime::createFromFormat( $val = \DateTime::createFromFormat(
$platform->getDateTimeFormatString(), $platform->getDateTimeFormatString(),
$value, $value,
(self::$utc) ? self::$utc : (self::$utc = new \DateTimeZone(\DateTimeZone::UTC)) (self::$utc) ? self::$utc : (self::$utc = new \DateTimeZone('UTC'))
); );
if (!$val) { if (!$val) {
throw ConversionException::conversionFailed($value, $this->getName()); throw ConversionException::conversionFailed($value, $this->getName());