aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/extension/manager.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-07-28 18:13:44 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-07-28 18:13:44 +0200
commite992eab4c3f39d22acacac70c95c62b942ca36ff (patch)
treecb4111d8c139694480856527ceb8aeffd5820994 /phpBB/phpbb/extension/manager.php
parentd8867bb40de290a4c7377444dac0f5d07950e88a (diff)
parentae350bda4276d245a8480242a8c803a840922ece (diff)
downloadforums-e992eab4c3f39d22acacac70c95c62b942ca36ff.tar
forums-e992eab4c3f39d22acacac70c95c62b942ca36ff.tar.gz
forums-e992eab4c3f39d22acacac70c95c62b942ca36ff.tar.bz2
forums-e992eab4c3f39d22acacac70c95c62b942ca36ff.tar.xz
forums-e992eab4c3f39d22acacac70c95c62b942ca36ff.zip
Merge pull request #2780 from Nicofuma/ticket/12870
[ticket/12870] phpbbcli.php db:migrate can not update from 3.0.12 to 3.1 * Nicofuma/ticket/12870: [ticket/12870] Add doc block [ticket/12870] Create the migrations table with a method in the migrator [ticket/12870] Add $config['version'] in phpbb_extension_manager_test [ticket/12870] Create the migrations table in db:migrate
Diffstat (limited to 'phpBB/phpbb/extension/manager.php')
-rw-r--r--phpBB/phpbb/extension/manager.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/phpbb/extension/manager.php b/phpBB/phpbb/extension/manager.php
index b19eb9f8a3..4a12e9ec8c 100644
--- a/phpBB/phpbb/extension/manager.php
+++ b/phpBB/phpbb/extension/manager.php
@@ -77,11 +77,12 @@ class manager
{
$this->extensions = array();
- // Do not try to load any extensions when installing or updating
+ // Do not try to load any extensions if the extension table
+ // does not exist or when installing or updating.
// Note: database updater invokes this code, and in 3.0
// there is no extension table therefore the rest of this function
// fails
- if (defined('IN_INSTALL'))
+ if (defined('IN_INSTALL') || version_compare($this->config['version'], '3.1.0-dev', '<'))
{
return;
}