Merge pull request #2835 from interworks-morr/fix_backend_sidenav_layout

Fixing case-sensitive issue with Backend Sidenav Layout - Issue #2834
This commit is contained in:
Luke Towers 2017-04-21 13:42:00 -06:00 committed by GitHub
commit 248af140bb
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
<?php foreach ($sideMenuItems as $sideItemCode => $item): ?>
<li
class="<?= BackendMenu::isSideMenuItemActive($item) ? 'active' : null ?>"
<?= HTML::attributes($item->attributes) ?>
<?= Html::attributes($item->attributes) ?>
>
<a href="<?= $item->url ?>">
<span class="nav-icon">
@ -44,4 +44,4 @@
<?php endif ?>
<?php else: ?>
<?= $this->makePartial($contextSidenav) ?>
<?php endif ?>
<?php endif ?>