From a0efae7734dffad160aed7684a3b4072a5dbec69 Mon Sep 17 00:00:00 2001 From: 3D-I Date: Sun, 6 Jan 2019 00:08:49 +0100 Subject: [PATCH] [ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev PHPBB3-15926 --- phpBB/install/app.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/install/app.php b/phpBB/install/app.php index b4adf0431a..710f49570b 100644 --- a/phpBB/install/app.php +++ b/phpBB/install/app.php @@ -22,7 +22,7 @@ $phpEx = substr(strrchr(__FILE__, '.'), 1); 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 equal or greater than 5.4.7 but less than 7.3-dev in order to install or update to phpBB 3.2'); + die('You are running an unsupported PHP version. Please upgrade to PHP equal to 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;