Project

General

Profile

Actions

Bug #24353

closed

destroyed encoding in file class.t3lib_div.php

Added by Jan Radecker almost 14 years ago. Updated over 10 years ago.

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)

Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #23632: deprecationLog in console crashes output on login pageClosedSteffen Kamper2010-09-28

Actions
Actions

Also available in: Atom PDF