From 297ff7cbf1f976a0f544fc6c2c0c111ca2743a80 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edi=20Modri=C4=87?= Date: Wed, 23 May 2018 13:01:09 +0200 Subject: [PATCH] EZP-28950: Add support for utf8mb4 charset to i18n --- lib/ezi18n/classes/ezcharsetinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ezi18n/classes/ezcharsetinfo.php b/lib/ezi18n/classes/ezcharsetinfo.php index 86e22e29160..d3ab3cca2ff 100644 --- a/lib/ezi18n/classes/ezcharsetinfo.php +++ b/lib/ezi18n/classes/ezcharsetinfo.php @@ -150,7 +150,7 @@ static function &encodingTable() 'cp849', 'cp850' ), 'unicode' => array( 'unicode' ), - 'utf-8' => array( 'utf-8' ) ); + 'utf-8' => array( 'utf-8', 'utf8mb4' ) ); } return $encodingTable; }