From 72371027bea3d49280cf1d64a172c09f0395dd1f Mon Sep 17 00:00:00 2001 From: pkamps Date: Sun, 1 Jul 2018 08:51:24 +0200 Subject: [PATCH] EZP-28950: Add support for utf8mb4 charset to i18n (#106) --- 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; }