Browse Source

Fix menu to show admin and progress refs BT#10657

Nicolas Ducoulombier 8 years ago
parent
commit
67677a05a5
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/template/rainbow/layout/menu.tpl

+ 1 - 1
main/template/rainbow/layout/menu.tpl

@@ -15,7 +15,7 @@
             <ul class="nav navbar-nav">
                 {% if _u.logged == 1 %}
                     {% for items in menu.possible_tabs %}     
-                        {% if items.key != 'profile' and items.key != 'my-space' and items.key != 'admin' %}
+                        {% if items.key != 'profile' and items.key != 'dashboard' %}
                         {% set counter = counter + 1 %}
                             <li class="item-menu menu-{{ counter }} {{ items.key }} {{ items.current }}"><a href="{{ items.url }}">{{ items.title }}</a></li>
                         {% endif %}