Project

General

Profile

Actions

Bug #16660

closed

BE search doesn't work with UTF-8 chars

Added by John Angel about 18 years ago. Updated over 17 years ago.

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)

Actions

Also available in: Atom PDF