Skip to content

Commit

Permalink
Fix markup (#23080)
Browse files Browse the repository at this point in the history
  • Loading branch information
Quy authored and laoneo committed Nov 15, 2018
1 parent 5a4ae8b commit a3489b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/modules/mod_menu/tmpl/default_submenu.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@

// Get the menu icon
$icon = $this->tree->getIconClass();
$iconClass = ($icon != '' && $current->getLevel() == 1) ? '<span class="' . $icon . ' aria-hidden="true"></span>' : '';
$iconClass = ($icon != '' && $current->getLevel() == 1) ? '<span class="' . $icon . '" aria-hidden="true"></span>' : '';

if ($link !== null && $current->get('target') !== null && $current->get('target') !== '')
{
Expand Down

0 comments on commit a3489b6

Please sign in to comment.