diff options
author | Nils Adermann <naderman@naderman.de> | 2012-11-09 23:46:51 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2012-11-09 23:46:51 +0100 |
commit | 0209431e4f6294e7a9e2d3203c24d7e43fe1ba88 (patch) | |
tree | d0698e17b0c7b23f13c4e7568d139fdb8260e796 | |
parent | a16b9d17da1349ab1f4fe517984ea36aef34e923 (diff) | |
parent | 923137cf3157fe009ccd1b982968e6720237ec87 (diff) | |
download | forums-0209431e4f6294e7a9e2d3203c24d7e43fe1ba88.tar forums-0209431e4f6294e7a9e2d3203c24d7e43fe1ba88.tar.gz forums-0209431e4f6294e7a9e2d3203c24d7e43fe1ba88.tar.bz2 forums-0209431e4f6294e7a9e2d3203c24d7e43fe1ba88.tar.xz forums-0209431e4f6294e7a9e2d3203c24d7e43fe1ba88.zip |
Merge remote-tracking branch 'github-igorw/ticket/11181-olympus' into develop-olympus
* github-igorw/ticket/11181-olympus:
[ticket/11181] Bump PHP requirement to 5.3.3 (from 5.3.2) [develop-olympus]
-rw-r--r-- | phpBB/includes/acp/acp_main.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_main.php b/phpBB/includes/acp/acp_main.php index cffe296651..ee7bd4dc45 100644 --- a/phpBB/includes/acp/acp_main.php +++ b/phpBB/includes/acp/acp_main.php @@ -398,7 +398,7 @@ class acp_main // Version check $user->add_lang('install'); - if ($auth->acl_get('a_server') && version_compare(PHP_VERSION, '5.3.2', '<')) + if ($auth->acl_get('a_server') && version_compare(PHP_VERSION, '5.3.3', '<')) { $template->assign_vars(array( 'S_PHP_VERSION_OLD' => true, |