Actions
Bug #26172
closedUpper case Umlaut in search string
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
Indexed Search
Target version:
-
Start date:
2011-04-21
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you have an upper case Umlaut in the search String, like "Öffnungszeiten", the description is empty.
The error is in line 2006:
$parts = preg_split('/'.$regExString.'/i', ' '.$str.' ', 20000, PREG_SPLIT_DELIM_CAPTURE);
The $str is not split.
I've replaced it with:
$parts = preg_split('/'.$regExString.'/ui', ' '.$str.' ', 20000, PREG_SPLIT_DELIM_CAPTURE);
Actions