Merge branch 'master' of git.icinga.org:icingaweb2
This commit is contained in:
commit
91b1a649a7
|
@ -75,8 +75,8 @@ class Cli extends ApplicationBootstrap
|
|||
|
||||
protected function fixLoggingConfig()
|
||||
{
|
||||
$conf = & $this->getConfig()->logging;
|
||||
if ($conf->type === 'stream') {
|
||||
$conf = $this->config->logging;
|
||||
if (! isset($conf->type) || $conf->type === 'stream') {
|
||||
$conf->level = $this->verbose;
|
||||
$conf->target = 'php://stderr';
|
||||
}
|
||||
|
|
|
@ -252,6 +252,8 @@
|
|||
$el.closest('li').addClass('active');
|
||||
$el.parents('li').addClass('active');
|
||||
}
|
||||
// Interrupt .each, only on menu item shall be active
|
||||
return false;
|
||||
} else if ($(el).closest('table.action').length) {
|
||||
$el.addClass('active');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue