Update functions.php

This commit is contained in:
FusionPBX 2019-04-17 15:10:37 -06:00 committed by GitHub
parent 42e589ff60
commit db5c7531f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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);