mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[feature/migrations] Fix path to extension migrations
PHPBB3-11318
This commit is contained in:
parent
aa67fa6dd8
commit
5705c3d377
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Reference in a new issue