diff options
Diffstat (limited to 'phpBB/phpbb/install/module/requirements')
| -rw-r--r-- | phpBB/phpbb/install/module/requirements/task/check_server_environment.php | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php index 29f9777747..41aa82623b 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php +++ b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php @@ -96,9 +96,7 @@ class check_server_environment extends \phpbb\install\task_base  	 */  	protected function check_php_version()  	{ -		$php_version = PHP_VERSION; - -		if (version_compare($php_version, '5.4') < 0) +		if (version_compare(PHP_VERSION, '7.1.3', '<'))  		{  			$this->response_helper->add_error_message('PHP_VERSION_REQD', 'PHP_VERSION_REQD_EXPLAIN'); | 
