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
In vendor/codeigniter/framework/system/Email, line 1501 references constant ICONV_ENABLED, but that is no longer set like it was in CI3
The text was updated successfully, but these errors were encountered:
This appears to have been a shorthand in CI3 for checking the iconv extension:
iconv
if (extension_loaded('iconv')) { defined('ICONV_ENABLED') OR define('ICONV_ENABLED', TRUE); @ini_set('iconv.internal_encoding', 'UTF-8'); }
While my reading suggests that extension should be available by default, switching the constant out for now to be safe...
Sorry, something went wrong.
6a47dbf
Merge pull request #2523 from MGatner/iconv
6bdf787
Replace legacy CI3 constant. Fixes #2512
No branches or pull requests
In vendor/codeigniter/framework/system/Email, line 1501 references constant ICONV_ENABLED, but that is no longer set like it was in CI3
The text was updated successfully, but these errors were encountered: