From 059b4fd6da56a91d7e3ae5e56f19d8beba3a4944 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Thu, 7 Nov 2019 22:58:49 -0700 Subject: [PATCH] Update functions.php --- resources/functions.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/resources/functions.php b/resources/functions.php index 866529de92..7368db8023 100644 --- a/resources/functions.php +++ b/resources/functions.php @@ -25,26 +25,6 @@ Luis Daniel Lucio Quiroz */ - if (!function_exists('software_version')) { - function software_version() { - return '4.5.10'; - } - } - - if (!function_exists('version')) { - function version() { - return software_version(); - } - } - - if (!function_exists('numeric_version')) { - function numeric_version() { - $v = explode('.', software_version()); - $n = ($v[0] * 10000 + $v[1] * 100 + $v[2]); - return $n; - } - } - if (!function_exists('mb_strtoupper')) { function mb_strtoupper($string) { return strtoupper($string);