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); } /**