We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11f96c8 commit 9d0fdebCopy full SHA for 9d0fdeb
interface/lib/app.inc.php
@@ -164,7 +164,7 @@ public function tpl_defaults()
164
$this->tpl->setVar('theme', $_SESSION['s']['theme']);
165
$this->tpl->setVar('phpsessid', session_id());
166
$this->tpl->setVar('html_content_encoding', $this->_conf['html_content_encoding']);
167
- if($this->_conf['logo'] != '' && @is_file($this->_conf['logo'])){
+ if(isset($this->_conf['logo']) && $this->_conf['logo'] != '' && @is_file($this->_conf['logo'])){
168
$this->tpl->setVar('logo', '<img src="'.$this->_conf['logo'].'" border="0" alt="">');
169
} else {
170
$this->tpl->setVar('logo', ' ');
0 commit comments