body.phtml: img urls are now allowed in icon()
No no more need for ../ hacks :)
This commit is contained in:
parent
af338c1dba
commit
fe72a1c36e
|
@ -25,14 +25,14 @@ if ($this->layout()->autorefreshInterval) {
|
||||||
'dashboard',
|
'dashboard',
|
||||||
null,
|
null,
|
||||||
array(
|
array(
|
||||||
'icon' => '../logo_icinga-inv.png',
|
'icon' => 'img/logo_icinga-inv.png',
|
||||||
'data-base-target' => '_main',
|
'data-base-target' => '_main',
|
||||||
'aria-hidden' => 'true',
|
'aria-hidden' => 'true',
|
||||||
'tabindex' => -1
|
'tabindex' => -1
|
||||||
)
|
)
|
||||||
); ?>
|
); ?>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?= $this->icon('../logo_icinga-inv.png'); ?>
|
<?= $this->icon('img/logo_icinga-inv.png'); ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue