Actions
Bug #24353
closeddestroyed encoding in file class.t3lib_div.php
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2010-12-17
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.4
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
Since last Core-Update encoding of file class.t3lib_div.php is screwed up.
Obviously the file was edited with wrong encoding settings and the Umlauts got lost.
Even if the affected functions are marked as deprecated, they are completely useless now...
Example:
Wrong since 4.4.5:
---------------
public static function danish_strtoupper($string) {
self::logDeprecatedFunction();
$value = strtoupper($string);
return strtr($value, '???????????????', '???????????????');
}
---------------
Should be (as in 4.4.4):
---------------
public static function danish_strtoupper($string) {
self::logDeprecatedFunction();
$value = strtoupper($string);
return strtr($value, 'áéúíâêûôîæøåäöü', 'ÁÉÚÍÄËÜÖÏÆØÅÄÖÜ');
}
---------------
(issue imported from #M16765)
Actions