aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-02-06 13:14:40 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-02-06 13:14:40 -0600
commit5705c3d377d097ef8bf7b99863eabc08fe3276e7 (patch)
tree49c227212b731c2362a6bacb1c164d581a89a292 /phpBB
parentaa67fa6dd83e329c3b6edbb356eae3eeda1ba69f (diff)
downloadforums-5705c3d377d097ef8bf7b99863eabc08fe3276e7.tar
forums-5705c3d377d097ef8bf7b99863eabc08fe3276e7.tar.gz
forums-5705c3d377d097ef8bf7b99863eabc08fe3276e7.tar.bz2
forums-5705c3d377d097ef8bf7b99863eabc08fe3276e7.tar.xz
forums-5705c3d377d097ef8bf7b99863eabc08fe3276e7.zip
[feature/migrations] Fix path to extension migrations
PHPBB3-11318
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/extension/manager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php
index 018324d5d6..008bd35376 100644
--- a/phpBB/includes/extension/manager.php
+++ b/phpBB/includes/extension/manager.php
@@ -520,7 +520,7 @@ class phpbb_extension_manager
protected function handle_migrations($extension_name, $mode)
{
$migrator = $this->container->get('migrator');
- $migrations_path = $this->get_extension_path($extension_name) . 'migrations';
+ $migrations_path = $this->phpbb_root_path . $this->get_extension_path($extension_name) . 'migrations/';
if (file_exists($migrations_path) && is_dir($migrations_path))
{
$migrator->load_migrations($migrations_path);