Fixes #2921 - use toUTF8 instead of fixUTF8

This commit is contained in:
snipe 2017-01-25 03:10:18 -08:00
parent 5f49e7c1a7
commit 80da0f801c

View file

@ -153,7 +153,7 @@ abstract class Importer
{ {
$val = $default; $val = $default;
if (array_key_exists(trim($key), $array)) { 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); $key = title_case($key);
$this->log("${key}: ${val}"); $this->log("${key}: ${val}");