die-wegmeister / Wegmeister.DatabaseStorage

A Neos CMS plugin to store data into Database and export it as xlsx (and other table formats). Also compatible with the Neos FormBuilder (https://github.com/neos/form-builder).
GNU General Public License v3.0
5 stars 7 forks source link

Fix namespace for DateTime #22

Closed anianweber closed 3 years ago

anianweber commented 3 years ago

Fixes #22

Benjamin-K commented 3 years ago

Thanks for the fix. Could I kindly ask you to do one more improvement here, as we have more data stored in the database?

Could you please replace

new \DateTime($value['date'])

with

\DateTime::createFromFormat($value['dateFormat'], $value['date'], $value['timezone'])

Thank you! :)

anianweber commented 3 years ago

Sure! Great suggestion.

anianweber commented 3 years ago

Implemented your suggested improvement.

Benjamin-K commented 3 years ago

Thx, I already created a new release.