Fixed wrong variable name.
This commit is contained in:
parent
de5e84073d
commit
acc4e52e3c
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ if($config->hasValues('sentry:dsn'))
|
||||||
});
|
});
|
||||||
})($config->scopeTo('sentry'));
|
})($config->scopeTo('sentry'));
|
||||||
|
|
||||||
$db = DbTools::create($cfg->getString('database:dsn', 'null:'));
|
$db = DbTools::create($config->getString('database:dsn', 'null:'));
|
||||||
$db->execute('SET SESSION time_zone = \'+00:00\', sql_mode = \'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION\';');
|
$db->execute('SET SESSION time_zone = \'+00:00\', sql_mode = \'STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION\';');
|
||||||
|
|
||||||
$awk = new AwakiContext($db, $config->scopeTo('urls'));
|
$awk = new AwakiContext($db, $config->scopeTo('urls'));
|
||||||
|
|
Loading…
Reference in a new issue