aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/console/command/db/migrate.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2014-10-25 12:03:13 -0700
committerMarc Alexander <admin@m-a-styles.de>2014-10-25 12:03:13 -0700
commit078e0c1e440f7f906b670348e8da00141e245876 (patch)
treee0a908182b5ae86fb1d1a3f4b2803dd14f8bb063 /phpBB/phpbb/console/command/db/migrate.php
parent84434630065c2491cfa5e65a69b8b22d6844b6f4 (diff)
downloadforums-078e0c1e440f7f906b670348e8da00141e245876.tar
forums-078e0c1e440f7f906b670348e8da00141e245876.tar.gz
forums-078e0c1e440f7f906b670348e8da00141e245876.tar.bz2
forums-078e0c1e440f7f906b670348e8da00141e245876.tar.xz
forums-078e0c1e440f7f906b670348e8da00141e245876.zip
[ticket/13211] Move console migrator output handler back to console folder
PHPBB3-13211
Diffstat (limited to 'phpBB/phpbb/console/command/db/migrate.php')
-rw-r--r--phpBB/phpbb/console/command/db/migrate.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/console/command/db/migrate.php b/phpBB/phpbb/console/command/db/migrate.php
index 76550a8429..87c2a057d1 100644
--- a/phpBB/phpbb/console/command/db/migrate.php
+++ b/phpBB/phpbb/console/command/db/migrate.php
@@ -57,7 +57,7 @@ class migrate extends \phpbb\console\command\command
protected function execute(InputInterface $input, OutputInterface $output)
{
- $this->migrator->set_output_handler(new \phpbb\db\log_wrapper_migrator_output_handler($this->user, new \phpbb\db\console_migrator_output_handler($this->user, $output), $this->phpbb_root_path . 'store/migrations_' . time() . '.log'));
+ $this->migrator->set_output_handler(new \phpbb\db\log_wrapper_migrator_output_handler($this->user, new console_migrator_output_handler($this->user, $output), $this->phpbb_root_path . 'store/migrations_' . time() . '.log'));
$this->migrator->create_migrations_table();