Skip to content

Commit

Permalink
[ticket/15926] Deny 3.2.x installation if PHP >= 7.3-dev
Browse files Browse the repository at this point in the history
PHPBB3-15926
  • Loading branch information
3D-I committed Jan 5, 2019
1 parent be0696a commit a0efae7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion phpBB/install/app.php
Expand Up @@ -22,7 +22,7 @@

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;
Expand Down

0 comments on commit a0efae7

Please sign in to comment.