diff options
author | Tristan Darricau <github@nicofuma.fr> | 2014-05-04 22:20:22 +0200 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-04 22:20:22 +0200 |
commit | 66b7eaa1cabd98f00d5720e2382d672782e1e01a (patch) | |
tree | 23f3090bab88b4f8a7be3e5b570e2e46d531e976 | |
parent | 6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1 (diff) | |
download | forums-66b7eaa1cabd98f00d5720e2382d672782e1e01a.tar forums-66b7eaa1cabd98f00d5720e2382d672782e1e01a.tar.gz forums-66b7eaa1cabd98f00d5720e2382d672782e1e01a.tar.bz2 forums-66b7eaa1cabd98f00d5720e2382d672782e1e01a.tar.xz forums-66b7eaa1cabd98f00d5720e2382d672782e1e01a.zip |
[ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrate
https://tracker.phpbb.com/browse/PHPBB3-12499
PHPBB3-12499
-rw-r--r-- | phpBB/phpbb/console/command/db/migrate.php | 2 |
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 16a09af6fc..d984ac9e7a 100644 --- a/phpBB/phpbb/console/command/db/migrate.php +++ b/phpBB/phpbb/console/command/db/migrate.php @@ -103,7 +103,7 @@ class migrate extends \phpbb\console\command\command if ($orig_version != $this->config['version']) { - $this->log->add('admin', 'LOG_UPDATE_DATABASE', $orig_version, $this->config['version']); + $this->log->add('admin', ANONYMOUS, '', 'LOG_UPDATE_DATABASE', time(), array($orig_version, $this->config['version'])); } $this->finalise_update(); |