From db5c7531f4f70ba73e8a38ca17ea534a06bca6de Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Wed, 17 Apr 2019 15:10:37 -0600 Subject: [PATCH] Update functions.php --- resources/functions.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/resources/functions.php b/resources/functions.php index cc608cb770..b5a0d42c0e 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -45,6 +45,12 @@ } } + if (!function_exists('mb_strtoupper')) { + function mb_strtoupper($string) { + return strtoupper($string); + } + } + if (!function_exists('check_float')) { function check_float($string) { $string = str_replace(",",".",$string);