aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/app.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-02 10:20:53 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-02 10:20:53 +0100
commit46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f (patch)
tree8110cbf67f7fe0ec9528d3835983cbd33955828e /phpBB/install/app.php
parent20fb9385f5776633a2bd2f3d8778bbd33d04da31 (diff)
parentc7dd7d42c68fc039467c55577f1a60ee1be3a744 (diff)
downloadforums-46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f.tar
forums-46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f.tar.gz
forums-46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f.tar.bz2
forums-46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f.tar.xz
forums-46b70ded94ca5a0b9ce05d757fa8e7feb1d1056f.zip
Merge pull request #5805 from 3D-I/ticket/16283
[ticket/16283] Update requirements for 3.3.0
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;