diff --git a/inc/inc.ClassSettings.php b/inc/inc.ClassSettings.php index f2ad438db..bb86e9bd5 100644 --- a/inc/inc.ClassSettings.php +++ b/inc/inc.ClassSettings.php @@ -1413,7 +1413,7 @@ class Settings { /* {{{ */ } // Check PHP version - if (version_compare(PHP_VERSION, '5.2.0') < 0) { + if (version_compare(PHP_VERSION, '5.6.38') < 0) { $result["php_version"] = array( "status" => "versiontolow", "type" => "error", @@ -1452,6 +1452,8 @@ class Settings { /* {{{ */ } // Check for Log.php + // Do not check for Log anymore, because it is in the vendor directory + /* if (!Settings::findInIncPath('Log.php')) { $result["pear_log"] = array( "status" => "notfound", @@ -1459,6 +1461,7 @@ class Settings { /* {{{ */ "suggestion" => "install_pear_package_log" ); } + */ // Check for HTTP/WebDAV/Server.php if (!Settings::findInIncPath('HTTP/WebDAV/Server.php')) {