Actions
Bug #14487
closedUmlaut conversion problem
Start date:
2005-01-11
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Searchterms with uppercase German Umlauts are not found. This is due to the fact that in the file class.indexer.php placed in folder
typo3/ext/indexed_search
var $convChars=array( "ÁÉÚÍÄËÜÖÏÆØÅ", "áéúíâêûôîæøå" );
instead of
var $convChars=array( "ÁÉÚÍÄËÜÖÏÆØÅ", "áéúíäêüöîæøå" );
which means that uppercase ÄÜÖ are transformed to âûô instead of äüö.
This has been dealt with in
http://typo3.org/documentation/mailing-lists/german-user-list-archive/thread/29717/?tx_maillisttofaq_pi1%5Bsword%5D=indexed%20search%20%DC%D6&tx_maillisttofaq_pi1%5Banswered_only%5D=0&tx_maillisttofaq_pi1%5Bmode%5D=1
and several other threads (thats where I got the solution from)
Please change this with the next release.
(issue imported from #M674)
Actions