Actions
Bug #23382
closedmeaningfulTempFilePrefix does not convert Umlauts and special characters
Start date:
2010-08-16
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.4
PHP Version:
4.3
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
// strip everything non-ascii
$meaningfulPrefix = preg_replace('/[^A-Za-z0-9_-]/', '', trim($meaningfulPrefix));
This is how special characters are simply stripped out. The should be converted using t3lib_cs->specCharsToASCII()
I also had an issue with Images that were not showing up in FE, when they had Umlauts in the title. I could not perfectly reproduce and investigate this issue, however it is completely gone when I switched to t3lib_cs->specCharsToASCII()
(issue imported from #M15466)
Files
Updated by Jeff Segars almost 14 years ago
Committed to trunk (4.5) in r9985 and 4.4 in r9986.
Actions