DDC-179 - Fixed issue with persistance of date fields by moving ! operator to the convertToPhpValue method.
This commit is contained in:
parent
0a9876b2e8
commit
b521b49402
2 changed files with 2 additions and 2 deletions
|
@ -1719,7 +1719,7 @@ abstract class AbstractPlatform
|
||||||
*/
|
*/
|
||||||
public function getDateFormatString()
|
public function getDateFormatString()
|
||||||
{
|
{
|
||||||
return '!Y-m-d';
|
return 'Y-m-d';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -30,6 +30,6 @@ class DateType extends Type
|
||||||
public function convertToPHPValue($value, AbstractPlatform $platform)
|
public function convertToPHPValue($value, AbstractPlatform $platform)
|
||||||
{
|
{
|
||||||
return ($value !== null)
|
return ($value !== null)
|
||||||
? \DateTime::createFromFormat($platform->getDateFormatString(), $value) : null;
|
? \DateTime::createFromFormat('!'.$platform->getDateFormatString(), $value) : null;
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue