mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-02 08:21:09 -08:00
Removed e() from array_smart_custom_field_fetch
This commit is contained in:
parent
506602b257
commit
c6e14caa31
|
@ -200,7 +200,7 @@ abstract class Importer
|
||||||
public function array_smart_custom_field_fetch(array $array, $key)
|
public function array_smart_custom_field_fetch(array $array, $key)
|
||||||
{
|
{
|
||||||
$index_name = strtolower($key->name);
|
$index_name = strtolower($key->name);
|
||||||
return array_key_exists($index_name, $array) ? e(trim($array[$index_name])) : false;
|
return array_key_exists($index_name, $array) ? trim($array[$index_name]) : false;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function log($string)
|
protected function log($string)
|
||||||
|
|
Loading…
Reference in a new issue