aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-05-02 19:50:05 +0200
committerAndreas Fischer <bantu@phpbb.com>2014-05-02 19:50:05 +0200
commitab1c1816209d5164f1d59c7ca1f8ead7e8ec8f92 (patch)
treebba64af0534a6ae3c77c85178ec36be0d7298235
parente2e6404a3bf8ebfae658a6a70f44b42f7bf071c7 (diff)
parent4bbace8c0d9ed9810c85604cad7bf383e827fc5f (diff)
downloadforums-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
-rw-r--r--phpBB/phpbb/console/command/db/migrate.php2
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();