diff options
| author | David King <imkingdavid@gmail.com> | 2012-03-08 18:04:24 -0500 |
|---|---|---|
| committer | David King <imkingdavid@gmail.com> | 2012-03-25 21:20:52 -0400 |
| commit | 063f6893af754cc992e487d323f766889bebba01 (patch) | |
| tree | f847afba13fa6ad0dd38b6dfb7e7bb6f44e21798 /phpBB/install/index.php | |
| parent | 75e731e14b219d5b926755e01b957a5640f26ac8 (diff) | |
| download | forums-063f6893af754cc992e487d323f766889bebba01.tar forums-063f6893af754cc992e487d323f766889bebba01.tar.gz forums-063f6893af754cc992e487d323f766889bebba01.tar.bz2 forums-063f6893af754cc992e487d323f766889bebba01.tar.xz forums-063f6893af754cc992e487d323f766889bebba01.zip | |
[task/php5.3] Looks like I missed a few places that needed PHP 5.2 changed to PHP 5.3.2
PHPBB3-10693
Diffstat (limited to 'phpBB/install/index.php')
| -rw-r--r-- | phpBB/install/index.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 9d003ba6ab..f180511e46 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -17,9 +17,9 @@ define('IN_INSTALL', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './../'; $phpEx = substr(strrchr(__FILE__, '.'), 1); -if (version_compare(PHP_VERSION, '5.2.0') < 0) +if (version_compare(PHP_VERSION, '5.3.2') < 0) { - die('You are running an unsupported PHP version. Please upgrade to PHP 5.2.0 or higher before trying to install phpBB 3.1'); + die('You are running an unsupported PHP version. Please upgrade to PHP 5.3.2 or higher before trying to install phpBB 3.1'); } function phpbb_require_updated($path, $optional = false) |
