mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Fixes #2921 - use toUTF8 instead of fixUTF8
This commit is contained in:
parent
5f49e7c1a7
commit
80da0f801c
|
@ -153,7 +153,7 @@ abstract class Importer
|
|||
{
|
||||
$val = $default;
|
||||
if (array_key_exists(trim($key), $array)) {
|
||||
$val = e(Encoding::fixUTF8(trim($array[ $key ])));
|
||||
$val = e(Encoding::toUTF8(trim($array[ $key ])));
|
||||
}
|
||||
$key = title_case($key);
|
||||
$this->log("${key}: ${val}");
|
||||
|
|
Loading…
Reference in a new issue