Actions
Bug #16660
closedBE search doesn't work with UTF-8 chars
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
-
Start date:
2006-10-21
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.0
PHP Version:
4
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When using search box on the bottom of BE, UTF-8 chars become garbled and search doesn't return any results.
Here is the fix:
alt_shortcut.php:538
$this->editPage = trim(strtolower($this->editPage));
should become:
$this->editPage = trim(t3lib_cs::conv_case($GLOBALS['LANG']->charSet,$this->editPage,'toLower'));
(issue imported from #M4423)
Updated by John Angel almost 18 years ago
Small patch exists, should be done for 4.1.
Updated by Martin Kutschker almost 18 years ago
Fixed in SVN (trunk and TYPO3_40).
Actions