diff options
author | Marc Alexander <admin@m-a-styles.de> | 2020-01-02 10:22:19 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2020-01-02 10:22:19 +0100 |
commit | ba2f1e1689d7e0fc2c552429201574d2ab4775a1 (patch) | |
tree | a8b374d9ab014b362e1a9818f7a7a2837762aa75 /phpBB/phpbb | |
parent | Merge branch '3.3.x' (diff) | |
parent | Merge pull request #5805 from 3D-I/ticket/16283 (diff) | |
download | phpbb-ba2f1e1689d7e0fc2c552429201574d2ab4775a1.tar.gz phpbb-ba2f1e1689d7e0fc2c552429201574d2ab4775a1.tar.bz2 phpbb-ba2f1e1689d7e0fc2c552429201574d2ab4775a1.zip |
Merge branch '3.3.x'
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/install/module/requirements/task/check_server_environment.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php index 4607ce9ec2..41aa82623b 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php +++ b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php @@ -96,9 +96,7 @@ class check_server_environment extends \phpbb\install\task_base */ protected function check_php_version() { - $php_version = PHP_VERSION; - - if (version_compare($php_version, '7.1') < 0) + if (version_compare(PHP_VERSION, '7.1.3', '<')) { $this->response_helper->add_error_message('PHP_VERSION_REQD', 'PHP_VERSION_REQD_EXPLAIN'); |