diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2008-03-21 11:49:34 +0100 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2008-03-21 11:49:34 +0100 |
commit | 086ae52d12011746a75f5588e877347bc0457352 (patch) | |
tree | e73263c7a29d0f94fafb874562610e16eb292ba8 /languages/classes/LanguageZh_hans.php | |
parent | 749e7fb2bae7bbda855de3c9e319435b9f698ff7 (diff) |
Update auf MediaWiki 1.12.0
Diffstat (limited to 'languages/classes/LanguageZh_hans.php')
-rw-r--r-- | languages/classes/LanguageZh_hans.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/languages/classes/LanguageZh_hans.php b/languages/classes/LanguageZh_hans.php new file mode 100644 index 00000000..ed7da2b9 --- /dev/null +++ b/languages/classes/LanguageZh_hans.php @@ -0,0 +1,23 @@ +<?php +/** + * @addtogroup Language + */ +class LanguageZh_hans extends Language { + function stripForSearch( $string ) { + # MySQL fulltext index doesn't grok utf-8, so we + # need to fold cases and convert to hex + # we also separate characters as "words" + if( function_exists( 'mb_strtolower' ) ) { + return preg_replace( + "/([\\xc0-\\xff][\\x80-\\xbf]*)/e", + "' U8' . bin2hex( \"$1\" )", + mb_strtolower( $string ) ); + } else { + list( , $wikiLowerChars ) = Language::getCaseMaps(); + return preg_replace( + "/([\\xc0-\\xff][\\x80-\\xbf]*)/e", + "' U8' . bin2hex( strtr( \"\$1\", \$wikiLowerChars ) )", + $string ); + } + } +} |