瀏覽代碼

Update functions.php

FusionPBX 6 年之前
父節點
當前提交
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')) {
 		function check_float($string) {
 			$string = str_replace(",",".",$string);