mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-11 16:35:38 +00:00
require at least 5.6.38, do not check for Log.php anymore
This commit is contained in:
parent
eccbc5ebd6
commit
ee57a4b25b
|
@ -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')) {
|
||||
|
|
Loading…
Reference in New Issue
Block a user