We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Form Fields Factory does not respect LC_LOCALE
Please use Zend_Date or at least change in file GatewayFieldsFactory.php
GatewayFieldsFactory.php
for ($x = 1; $x <= 12; $x++) { $months[$x] = date('m - F', mktime(0, 0, 0, $x, 1)); }
to
for ($x = 1; $x <= 12; $x++) { $months[$x] = str_pad($x, 2, '0', STR_PAD_LEFT) . " - " . strftime('%B', mktime(0, 0, 0, $x)); }
The text was updated successfully, but these errors were encountered:
Can you open a PR?
Sorry, something went wrong.
I'm about to submit a PR that includes this fix, thanks @digitall-it
6168fb1
No branches or pull requests
Form Fields Factory does not respect LC_LOCALE
Please use Zend_Date or at least change in file
GatewayFieldsFactory.php
to
The text was updated successfully, but these errors were encountered: