Skip to content

Commit

Permalink
body.phtml: img urls are now allowed in icon()
Browse files Browse the repository at this point in the history
No no more need for ../ hacks :)
  • Loading branch information
Thomas-Gelf committed Oct 1, 2015
1 parent af338c1 commit fe72a1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions application/layouts/scripts/body.phtml
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ if ($this->layout()->autorefreshInterval) {
'dashboard',
null,
array(
'icon' => '../logo_icinga-inv.png',
'icon' => 'img/logo_icinga-inv.png',
'data-base-target' => '_main',
'aria-hidden' => 'true',
'tabindex' => -1
)
); ?>
<?php else: ?>
<?= $this->icon('../logo_icinga-inv.png'); ?>
<?= $this->icon('img/logo_icinga-inv.png'); ?>
<?php endif ?>
</div>
</div>
Expand Down Expand Up @@ -60,4 +60,4 @@ if ($this->layout()->autorefreshInterval) {
}
}
?></ul>
</div>
</div>

0 comments on commit fe72a1c

Please sign in to comment.