You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** * @var \DateTime * * @ORM\Column(name="date", type="datetime") */private$date;
/** * Set date * * @param \DateTime $date * @return TvGuide */publicfunctionsetDate($date)
{
$this->date = $date;
return$this;
}
/** * Get date * * @return \DateTime */publicfunctiongetDate()
{
return$this->date;
}
And my generator:
date:
label: ВремяformType: afe_datetime_picker
So, when I select in admin for example 25.12.2013, it save to db 24.12.2013. So each time it save date before selected date. I try afe_date_picker and it works correct.
The text was updated successfully, but these errors were encountered:
I'm having the same problem with this type. Weird thing is that I have the problem just in my prod server.
I cant replicate this behaviour in my dev server.
Hi, I use
afe_datetime_picker
,My entity:
And my generator:
So, when I select in admin for example 25.12.2013, it save to db 24.12.2013. So each time it save date before selected date. I try
afe_date_picker
and it works correct.The text was updated successfully, but these errors were encountered: