Skip to content

Commit

Permalink
Fix missing target and title in main menu tab links - loosely refs #1570
Browse files Browse the repository at this point in the history
  • Loading branch information
ywarnier committed Dec 22, 2016
1 parent 30e312b commit a996c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main/template/default/layout/menu.tpl
Expand Up @@ -12,7 +12,7 @@
<div class="collapse navbar-collapse" id="menuone">
<ul class="nav navbar-nav">
{% for item in menu %}
<li class="{{ item.current }}"><a href="{{ item.url }}">{{ item.title }}</a></li>
<li class="{{ item.current }}"><a href="{{ item.url }}" target="{{ item.target }}" title="{{ item.title }}">{{ item.title }}</a></li>
{% endfor %}
</ul>
{% if _u.logged == 1 %}
Expand Down

0 comments on commit a996c71

Please sign in to comment.