mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Remove escaping on import value checker
This commit is contained in:
parent
140724be2e
commit
506602b257
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue