From 7172da8ed6d13c46030b2f5bc607b1d4cf6de415 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Thu, 11 Jul 2019 08:49:54 -0600 Subject: [PATCH] fix --- system/src/Grav/Common/Utils.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Utils.php b/system/src/Grav/Common/Utils.php index 0ffbfcb33..b085c28d1 100644 --- a/system/src/Grav/Common/Utils.php +++ b/system/src/Grav/Common/Utils.php @@ -331,7 +331,7 @@ abstract class Utils */ public static function arrayLower(Array $a) { - return array_combine(array_map('strtolower', $a), $a); + return array_map('mb_strtolower', $a); } /**