1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

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
This commit is contained in:
Andreas Fischer
2014-05-04 22:38:46 +02:00

View File

@@ -103,7 +103,7 @@ class migrate extends \phpbb\console\command\command
if ($orig_version != $this->config['version']) 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(); $this->finalise_update();