From 80da0f801cff00e8d91469fa23d2dbe140dfa493 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 25 Jan 2017 03:10:18 -0800 Subject: [PATCH] Fixes #2921 - use toUTF8 instead of fixUTF8 --- app/Importer/Importer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Importer/Importer.php b/app/Importer/Importer.php index 45c6940946..16ed3b1422 100644 --- a/app/Importer/Importer.php +++ b/app/Importer/Importer.php @@ -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}");