aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes
diff options
context:
space:
mode:
author3D-I <480857+3D-I@users.noreply.github.com>2019-12-31 22:07:38 +0100
committer3D-I <480857+3D-I@users.noreply.github.com>2019-12-31 22:08:18 +0100
commit7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e (patch)
treeaaf161901b9cee12f73dbf2727caa4bc6d5f91d0 /phpBB/includes
parent6ee537b3f2f45b300e38a55759566abb0752ec0f (diff)
downloadforums-7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e.tar
forums-7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e.tar.gz
forums-7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e.tar.bz2
forums-7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e.tar.xz
forums-7ef52f723cbf9714fd5e8a94f6a9b0c7b3085f1e.zip
[ticket/16283] Update requirements for 3.3.0
PHPBB3-16283
Diffstat (limited to 'phpBB/includes')
-rw-r--r--phpBB/includes/startup.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/startup.php b/phpBB/includes/startup.php
index d42ae58c42..a022fd0b73 100644
--- a/phpBB/includes/startup.php
+++ b/phpBB/includes/startup.php
@@ -23,9 +23,9 @@ $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') < 0)
{
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');
}