Bug fix: let accented characters pass through the autocomplete

SVN:trunk[1501]
This commit is contained in:
Denis Flaven
2011-08-24 13:53:19 +00:00
parent 38591f444e
commit 0850370275

View File

@@ -326,7 +326,7 @@ EOF
$aValues = $oValuesSet->GetValues(array('this' => $oObj), $sContains);
foreach($aValues as $sKey => $sFriendlyName)
{
$oP->add(trim(htmlentities($sFriendlyName, ENT_COMPAT, 'UTF-8'))."|".$sKey."\n");
$oP->add(trim($sFriendlyName)."|".$sKey."\n");
}
}