Skip to content
This repository was archived by the owner on Jun 11, 2024. It is now read-only.

Commit 65eaf7f

Browse files
committed
fixes the wrong array access for log.level for the About Page
1 parent 456a819 commit 65eaf7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

application/controllers/ApplicationController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ public function aboutAction()
8484
),
8585
'Logging' => array(
8686
'Path' => rtrim($this->_config->log->path, '/') . $logWritable,
87-
'Level' => (bool)$this->_config->loglevel ? $this->_config->loglevel : 'disabled'
87+
'Level' => (bool)$this->_config->log->level ? $this->_config->log->level : 'disabled'
8888
)
8989
);
9090

0 commit comments

Comments
 (0)