diff options
| author | Marc Alexander <admin@m-a-styles.de> | 2015-10-04 20:27:43 +0200 |
|---|---|---|
| committer | Marc Alexander <admin@m-a-styles.de> | 2015-10-04 20:27:43 +0200 |
| commit | 4437d0c794c17c16dc86484ca1660e04ca907b1e (patch) | |
| tree | 7375580b4d9d1030dda2ba94bf2dc0f5e248f880 /phpBB/phpbb | |
| parent | 8451272d6995e161aeb530755527b49ae99d7c31 (diff) | |
| parent | f3dc2a801d7e077e5e10a143b8d450b0b4a3aa11 (diff) | |
| download | forums-4437d0c794c17c16dc86484ca1660e04ca907b1e.tar forums-4437d0c794c17c16dc86484ca1660e04ca907b1e.tar.gz forums-4437d0c794c17c16dc86484ca1660e04ca907b1e.tar.bz2 forums-4437d0c794c17c16dc86484ca1660e04ca907b1e.tar.xz forums-4437d0c794c17c16dc86484ca1660e04ca907b1e.zip | |
Merge pull request #3939 from Nicofuma/ticket/14205
[ticket/14205] Bump PHP requirement to PHP 5.4
Diffstat (limited to 'phpBB/phpbb')
| -rw-r--r-- | phpBB/phpbb/composer.json | 2 | ||||
| -rw-r--r-- | phpBB/phpbb/install/module/requirements/task/check_server_environment.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/composer.json b/phpBB/phpbb/composer.json index 175be4b0ab..8241091dc1 100644 --- a/phpBB/phpbb/composer.json +++ b/phpBB/phpbb/composer.json @@ -22,6 +22,6 @@ "classmap": [""] }, "require": { - "php": ">=5.3.9" + "php": ">=5.4" } } 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 50efdc55a2..62485a2097 100644 --- a/phpBB/phpbb/install/module/requirements/task/check_server_environment.php +++ b/phpBB/phpbb/install/module/requirements/task/check_server_environment.php @@ -95,7 +95,7 @@ class check_server_environment extends \phpbb\install\task_base { $php_version = PHP_VERSION; - if (version_compare($php_version, '5.3.9') < 0) + if (version_compare($php_version, '5.4') < 0) { $this->response_helper->add_error_message('PHP_VERSION_REQD', 'PHP_VERSION_REQD_EXPLAIN'); |
