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/includes
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/includes')
-rw-r--r--phpBB/includes/startup.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/includes/startup.php b/phpBB/includes/startup.php
index d42ae58c42..5ead3b7fbb 100644
--- a/phpBB/includes/startup.php
+++ b/phpBB/includes/startup.php
@@ -23,11 +23,11 @@ $level = E_ALL & ~E_NOTICE & ~E_DEPRECATED;
error_reporting($level);
/**
-* Minimum Requirement: PHP 7.1.0
+* Minimum Requirement: PHP 7.1.3
*/
-if (version_compare(PHP_VERSION, '7.1') < 0)
+if (version_compare(PHP_VERSION, '7.1.3', '<'))
{
- die('You are running an unsupported PHP version. Please upgrade to PHP 7.1.0 or higher before trying to install or update to phpBB 3.3');
+ die('You are running an unsupported PHP version. Please upgrade to PHP 7.1.3 or higher before trying to install or update to phpBB 3.3');
}
// Register globals and magic quotes have been dropped in PHP 5.4 so no need for extra checks