From 94ec37029a054f371e91a034d029737739d42ea1 Mon Sep 17 00:00:00 2001 From: Shish Date: Thu, 8 Jun 2017 09:37:21 +0100 Subject: [PATCH] stub more mb_ functions --- core/util.inc.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/util.inc.php b/core/util.inc.php index 842918dd..0ad31d44 100644 --- a/core/util.inc.php +++ b/core/util.inc.php @@ -963,6 +963,10 @@ if (!function_exists('mb_strlen')) { function mb_strlen($str, $encoding) { return strlen($str); } + function mb_internal_encoding($encoding) {} + function mb_strtolower($str) { + return strtolower($str); + } } /**