From f01099fa9e72c053780dbf1a887397d3dad52e7c Mon Sep 17 00:00:00 2001 From: Prasad <prasad@vtiger.com> Date: Sat, 4 May 2024 15:14:40 +0530 Subject: [PATCH] Removed log directive check during install as its handled in config file --- modules/Install/models/Utils.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/modules/Install/models/Utils.php b/modules/Install/models/Utils.php index 733c07784..e24846892 100644 --- a/modules/Install/models/Utils.php +++ b/modules/Install/models/Utils.php @@ -96,12 +96,6 @@ class Install_Utils_Model { * @return type */ public static function getRecommendedDirectives(){ - if(version_compare(PHP_VERSION, '5.5.0') >= 0){ - self::$recommendedDirectives['error_reporting'] = 'E_WARNING & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT'; - } - else if(version_compare(PHP_VERSION, '5.3.0') >= 0) { - self::$recommendedDirectives['error_reporting'] = 'E_WARNING & ~E_NOTICE & ~E_DEPRECATED'; - } return self::$recommendedDirectives; } -- GitLab