|
Thanks! It was a bug caused by Extension:SimpleSecurity
There is a global variable called $wgDBtype that for some reason, the SimpleSecurity extension saw fit to muck with.
Part of the search subsystem depended on this variable being set to "mysql", as it should be. In languages/Language.php, there is the following code:
if ( $wgDBtype != 'mysql' ) {
return $string;
}
$wgDBtype wasn't set to "mysql", so the search string was returned in its raw state. But it needed to be converted! As noted here:
# MySQL fulltext index doesn't grok utf-8, so we
# need to fold cases and convert to hex
__________________
Spiros Doikas
Please login or register to view this content. Registration is FREE
|