Skip to content

Commit

Permalink
This works
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu007-creator committed May 11, 2021
1 parent 4dec88a commit 32acd49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions administrator/modules/mod_submenu/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
<?php // Only if Menu-show = true ?>
<?php if ($params->get('menu_show', 1)) : ?>
<li class="list-group-item d-flex align-items-center">
<a class="flex-grow-1" href="<?php echo $item->link; ?>"
<a class="flex-grow-1 text-decoration-underline" href="<?php echo $item->link; ?>"
<?php echo $item->target === '_blank' ? ' title="' . Text::sprintf('JBROWSERTARGET_NEW_TITLE', Text::_($item->title)) . '"' : ''; ?>
<?php echo $item->target ? ' target="' . $item->target . '"' : ''; ?>><u>
<?php echo $item->target ? ' target="' . $item->target . '"' : ''; ?>>
<?php if (!empty($params->get('menu_image'))) : ?>
<?php
$image = htmlspecialchars($params->get('menu_image'), ENT_QUOTES, 'UTF-8');
Expand All @@ -67,7 +67,7 @@
<span class="menu-badge">
<span class="icon-spin icon-spinner mt-1 system-counter float-end" data-url="<?php echo $item->ajaxbadge; ?>"></span>
</span>
<?php endif; ?></u>
<?php endif; ?>
</a>
<?php if ($params->get('menu-quicktask')) : ?>
<?php $permission = $params->get('menu-quicktask-permission'); ?>
Expand Down

0 comments on commit 32acd49

Please sign in to comment.