Skip to content
Snippets Groups Projects
Commit f01099fa authored by Prasad's avatar Prasad
Browse files

Removed log directive check during install as its handled in config file

parent c76144bc
No related branches found
No related tags found
No related merge requests found
...@@ -96,12 +96,6 @@ class Install_Utils_Model { ...@@ -96,12 +96,6 @@ class Install_Utils_Model {
* @return type * @return type
*/ */
public static function getRecommendedDirectives(){ 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; return self::$recommendedDirectives;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment