Remove escaping on import value checker

This commit is contained in:
snipe 2018-03-22 14:25:52 -07:00
parent 140724be2e
commit 506602b257

View file

@ -152,7 +152,7 @@ abstract class Importer
$this->log("Custom Key: ${key}");
if (array_key_exists($key, $array)) {
$val = e(Encoding::toUTF8(trim($array[ $key ])));
$val = Encoding::toUTF8(trim($array[ $key ]));
}
// $this->log("${key}: ${val}");
return $val;