Skip to content

Commit

Permalink
DOBISSUE date format changed after customer tries to register with sa…
Browse files Browse the repository at this point in the history
…me email address.
  • Loading branch information
KaushikChavda authored and gelanivishal committed Jul 27, 2018
1 parent 9317c4f commit ff550b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/Magento/Framework/Data/Form/Filter/Date.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public function inputFilter($value)
public function outputFilter($value)
{
$filterInput = new \Zend_Filter_LocalizedToNormalized(
['date_format' => DateTime::DATE_INTERNAL_FORMAT, 'locale' => $this->localeResolver->getLocale()]
['date_format' => $this->_dateFormat, 'locale' => $this->localeResolver->getLocale()]
);
$filterInternal = new \Zend_Filter_NormalizedToLocalized(
['date_format' => $this->_dateFormat, 'locale' => $this->localeResolver->getLocale()]
Expand Down

0 comments on commit ff550b4

Please sign in to comment.