소스 검색

Update functions.php

FusionPBX 5 년 전
부모
커밋
69f0d39d47
1개의 변경된 파일0개의 추가작업 그리고 20개의 파일을 삭제
  1. 0 20
      resources/functions.php

+ 0 - 20
resources/functions.php

@@ -25,26 +25,6 @@
 	Luis Daniel Lucio Quiroz <[email protected]>
 */
 
-	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);