aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-02 10:22:19 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-02 10:22:19 +0100
commitba2f1e1689d7e0fc2c552429201574d2ab4775a1 (patch)
treea8b374d9ab014b362e1a9818f7a7a2837762aa75 /phpBB/phpbb
parentMerge branch '3.3.x' (diff)
parentMerge pull request #5805 from 3D-I/ticket/16283 (diff)
downloadphpbb-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.php4
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');