Bug #16803
closedCall to undefined function: mb_internal_encoding() in tx_rtehtmlarea_pi1
0%
Description
htmlarea relys on mbstring which is not obligatory build into php.
(issue imported from #M4686)
Files
Updated by Michael Stucki almost 18 years ago
I have attached a patch which uses the simple str_* functions instead of mb_*
However we first need to clarify whether this will still work flawlessy...
Updated by Stanislas Rolland almost 17 years ago
htmlArea RTE does not rely on mbstring, only the spell checker does. This is a documented requirement:
http://typo3.org/documentation/document-library/extension-manuals/rtehtmlarea_manual/1.0.0/view/2/2/
Updated by Stanislas Rolland over 16 years ago
Attached patch removes dependency on mbstring. replaces mb_* operations with preg_*.
Updated by Stanislas Rolland over 16 years ago
Committed to SVN TYPO3core trunk revision 3982.
Updated by Stanislas Rolland over 16 years ago
Follow-up patch adds u modifier to preg_* operations when the encoding is utf-8.
Also spell checker is removed when encoding is neither iso-8859-1 nor utf-8, because the spell checking script uses PHP xml parser which accepts only iso-8859-1 or uft-8 input.
Committed to TYPO3core trunk revision 4001.