Actions
Bug #18766
closedlocallang.xml charset convertion dont work for LOCAL_LANG['default']
Start date:
2008-05-09
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.2
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
in class.t3lib_div.php
if (is_array($LOCAL_LANG['default'] && $targetCharset!='utf-8'))
will never be true
should look like this
if (is_array($LOCAL_LANG['default']) && $targetCharset!='utf-8')
(issue imported from #M8360)
Files
Updated by Dmitry Dulepov over 16 years ago
Please make pathes relative to TYPO3 root directory next time! :)
Updated by Steffen Kamper over 16 years ago
i did a new patch because this occurs 2 times.
Actions