Project

General

Profile

Actions

Bug #26172

closed

Upper case Umlaut in search string

Added by Ingo Schramme about 13 years ago. Updated over 5 years ago.

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

Also available in: Atom PDF