diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-05-02 19:50:05 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-05-02 19:50:05 +0200 |
commit | ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92 (patch) | |
tree | bba64af0534a6ae3c77c85178ec36be0d7298235 /phpBB/phpbb/console/command/db/migrate.php | |
parent | e2e6404a3bf8ebfae658a6a70f44b42f7bf071c7 (diff) | |
parent | 4bbace8c0d9ed9810c85604cad7bf383e827fc5f (diff) | |
download | forums-ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92.tar forums-ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92.tar.gz forums-ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92.tar.bz2 forums-ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92.tar.xz forums-ab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92.zip |
Merge pull request #2381 from Nicofuma/ticket/12475
[ticket/12475] Undefined variable $log in db:migrate console command
* Nicofuma/ticket/12475:
[ticket/12475] Error in db:update console command
Diffstat (limited to 'phpBB/phpbb/console/command/db/migrate.php')
-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 044929adaa..c7ccd4646e 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']) { - $log->add('admin', 'LOG_UPDATE_DATABASE', $orig_version, $this->config['version']); + $this->log->add('admin', 'LOG_UPDATE_DATABASE', $orig_version, $this->config['version']); } $this->finalise_update(); |