aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/app.php
diff options
context:
space:
mode:
author3D-I <marktravai@gmail.com>2019-01-05 01:32:43 +0100
committer3D-I <marktravai@gmail.com>2019-01-05 01:32:43 +0100
commit5949f912ba429c05109c5814f5efc85ff8872d02 (patch)
treec87081f56b2937c901fc01f26287d86cd30bedf6 /phpBB/install/app.php
parent871875d9aa3d0b0a17a0eb1936323d5737a438f5 (diff)
downloadforums-5949f912ba429c05109c5814f5efc85ff8872d02.tar
forums-5949f912ba429c05109c5814f5efc85ff8872d02.tar.gz
forums-5949f912ba429c05109c5814f5efc85ff8872d02.tar.bz2
forums-5949f912ba429c05109c5814f5efc85ff8872d02.tar.xz
forums-5949f912ba429c05109c5814f5efc85ff8872d02.zip
[ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev
PHPBB3-15926
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 ef59689a65..ef29bd5722 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, '5.4') < 0)
+if ( version_compare(PHP_VERSION, '5.4.7', '<') || version_compare(PHP_VERSION, '7.3-dev', '>=') )
{
- die('You are running an unsupported PHP version. Please upgrade to PHP 5.4.0 or higher before trying to install or update to phpBB 3.2');
+ die('You are running an unsupported PHP version. Please upgrade to PHP equal or greater than 5.4.7 but less than 7.3-dev in order to install or update to phpBB 3.2');
}
$startup_new_path = $phpbb_root_path . 'install/update/update/new/install/startup.' . $phpEx;