Magento custom module date field saving date to one day before the selected date

后端 未结 8 1600
刺人心
刺人心 2021-01-25 05:08

i followed steps on this link to add a date field to my custom module :

http://magentomechanic.blogspot.com/2010/01/to-add-custom-date-field-in-custom.html

Every

8条回答
  •  夕颜
    夕颜 (楼主)
    2021-01-25 05:53

    This is a really odd issue. This is what worked for me in a _filterDate function:

    $value = date('Y-m-d', strtotime($value . ' + 1 days'));
    

提交回复
热议问题