diff options
author | Marc Alexander <admin@m-a-styles.de> | 2014-10-24 13:20:40 -0700 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2014-10-24 13:22:56 -0700 |
commit | 516bd9ea51a2c2b908eb1f62bddaba967559db4a (patch) | |
tree | 70de1f06e02608fd1a24b89c828d0718f37409f6 /phpBB/install | |
parent | 14300a147587755ecf07fae038a3767039fd8504 (diff) | |
download | forums-516bd9ea51a2c2b908eb1f62bddaba967559db4a.tar forums-516bd9ea51a2c2b908eb1f62bddaba967559db4a.tar.gz forums-516bd9ea51a2c2b908eb1f62bddaba967559db4a.tar.bz2 forums-516bd9ea51a2c2b908eb1f62bddaba967559db4a.tar.xz forums-516bd9ea51a2c2b908eb1f62bddaba967559db4a.zip |
[ticket/13211] Add log wrapper for writing database updater to log file
PHPBB3-13211
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 5a2287c9e1..80fd40a944 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -174,7 +174,7 @@ define('IN_DB_UPDATE', true); // End startup code $migrator = $phpbb_container->get('migrator'); -$migrator->set_output_handler(new \phpbb\db\html_migrator_output_handler($user)); +$migrator->set_output_handler(new \phpbb\db\log_wrapper_migrator_output_handler($user, new \phpbb\db\html_migrator_output_handler($user), $phpbb_root_path . 'store/migrations_' . time() . '.log')); $migrator->create_migrations_table(); |