瀏覽代碼

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 14 年之前
父節點
當前提交
94df612c6d
共有 1 個文件被更改,包括 1 次插入1 次删除
  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");
 		}
 	}