aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/app.php
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/install/app.php')
-rw-r--r--phpBB/install/app.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/app.php b/phpBB/install/app.php
index 9d04ec2156..0e6212e37a 100644
--- a/phpBB/install/app.php
+++ b/phpBB/install/app.php
@@ -20,9 +20,9 @@ define('PHPBB_ENVIRONMENT', 'production');
$phpbb_root_path = '../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
-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');
}
$startup_new_path = $phpbb_root_path . 'install/update/update/new/install/startup.' . $phpEx;