FusionPBX 6 лет назад
Родитель
Сommit
9fbddb88cd
1 измененных файлов с 6 добавлено и 0 удалено
  1. 6 0
      resources/functions.php

+ 6 - 0
resources/functions.php

@@ -45,6 +45,12 @@
 		}
 		}
 	}
 	}
 
 
+	if (!function_exists('mb_strtoupper')) {
+		function mb_strtoupper($string) {
+			return strtoupper($string);
+		}
+	}
+
 	if (!function_exists('check_float')) {
 	if (!function_exists('check_float')) {
 		function check_float($string) {
 		function check_float($string) {
 			$string = str_replace(",",".",$string);
 			$string = str_replace(",",".",$string);