Explorar o código

Bug fix: let accented characters pass through the autocomplete

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@1501 a333f486-631f-4898-b8df-5754b55c2be0
dflaven %!s(int64=14) %!d(string=hai) anos
pai
achega
94df612c6d
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      application/ui.extkeywidget.class.inc.php

+ 1 - 1
application/ui.extkeywidget.class.inc.php

@@ -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");
 		}
 	}