mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-14 05:31:42 +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
|
// 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(
|
$result["php_version"] = array(
|
||||||
"status" => "versiontolow",
|
"status" => "versiontolow",
|
||||||
"type" => "error",
|
"type" => "error",
|
||||||
|
@ -1452,6 +1452,8 @@ class Settings { /* {{{ */
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check for Log.php
|
// Check for Log.php
|
||||||
|
// Do not check for Log anymore, because it is in the vendor directory
|
||||||
|
/*
|
||||||
if (!Settings::findInIncPath('Log.php')) {
|
if (!Settings::findInIncPath('Log.php')) {
|
||||||
$result["pear_log"] = array(
|
$result["pear_log"] = array(
|
||||||
"status" => "notfound",
|
"status" => "notfound",
|
||||||
|
@ -1459,6 +1461,7 @@ class Settings { /* {{{ */
|
||||||
"suggestion" => "install_pear_package_log"
|
"suggestion" => "install_pear_package_log"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
// Check for HTTP/WebDAV/Server.php
|
// Check for HTTP/WebDAV/Server.php
|
||||||
if (!Settings::findInIncPath('HTTP/WebDAV/Server.php')) {
|
if (!Settings::findInIncPath('HTTP/WebDAV/Server.php')) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user