diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-05-04 22:38:46 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-04 22:38:46 +0200 |
commit | 0f4bff610165ad7f8fea03808277a1df0f1c49ab (patch) | |
tree | 23f3090bab88b4f8a7be3e5b570e2e46d531e976 | |
parent | 6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1 (diff) | |
parent | 66b7eaa1cabd98f00d5720e2382d672782e1e01a (diff) | |
download | forums-0f4bff610165ad7f8fea03808277a1df0f1c49ab.tar forums-0f4bff610165ad7f8fea03808277a1df0f1c49ab.tar.gz forums-0f4bff610165ad7f8fea03808277a1df0f1c49ab.tar.bz2 forums-0f4bff610165ad7f8fea03808277a1df0f1c49ab.tar.xz forums-0f4bff610165ad7f8fea03808277a1df0f1c49ab.zip |
Merge pull request #2407 from Nicofuma/ticket/12499
[ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrate
* Nicofuma/ticket/12499:
[ticket/12499] Incorrect call to phpbb\log\log::add() in db:migrate
-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(); |