aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/index.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-02-04 21:14:01 +0100
committerAndreas Fischer <bantu@phpbb.com>2015-02-04 21:14:01 +0100
commite4064ca839a6053bdb3f01fd4215f5e4d088a2f5 (patch)
tree93d9aa03493fc667f26bce8cf5a2c4e488ba8b7d /phpBB/install/index.php
parent3267c6a61ad88bf96d6f0159dcb565ded4704e82 (diff)
parente323c7c23aabcd9914d2a2572e43430e00ced421 (diff)
downloadforums-e4064ca839a6053bdb3f01fd4215f5e4d088a2f5.tar
forums-e4064ca839a6053bdb3f01fd4215f5e4d088a2f5.tar.gz
forums-e4064ca839a6053bdb3f01fd4215f5e4d088a2f5.tar.bz2
forums-e4064ca839a6053bdb3f01fd4215f5e4d088a2f5.tar.xz
forums-e4064ca839a6053bdb3f01fd4215f5e4d088a2f5.zip
Merge pull request #3207 from Nicofuma/ticket/13407
[ticket/13407] Update Symfony to 2.7.*@dev * Nicofuma/ticket/13407: [ticket/13407] Update composer.lock file [ticket/13407] Bump minimal version to php 5.3.9 [ticket/13407] Introduce a request_stack service [ticket/13407] Remove the last occurence of pattern in routing files [ticket/13407] Update Symfony to 2.7.*@dev
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r--phpBB/install/index.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php
index 1c9fdb351d..811034f064 100644
--- a/phpBB/install/index.php
+++ b/phpBB/install/index.php
@@ -22,9 +22,9 @@ define('PHPBB_ENVIRONMENT', 'production');
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../';
$phpEx = substr(strrchr(__FILE__, '.'), 1);
-if (version_compare(PHP_VERSION, '5.3.3') < 0)
+if (version_compare(PHP_VERSION, '5.3.9') < 0)
{
- die('You are running an unsupported PHP version. Please upgrade to PHP 5.3.3 or higher before trying to install phpBB 3.1');
+ die('You are running an unsupported PHP version. Please upgrade to PHP 5.3.9 or higher before trying to install phpBB 3.1');
}
function phpbb_require_updated($path, $optional = false)