aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/menubar_links.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'themes/default/template/menubar_links.tpl')
-rw-r--r--themes/default/template/menubar_links.tpl9
1 files changed, 3 insertions, 6 deletions
diff --git a/themes/default/template/menubar_links.tpl b/themes/default/template/menubar_links.tpl
index a945bd0d6..83cc6c317 100644
--- a/themes/default/template/menubar_links.tpl
+++ b/themes/default/template/menubar_links.tpl
@@ -1,15 +1,12 @@
<dt>{'Links'|@translate}</dt>
<dd>
- <ul>
+ <ul>{strip}
{foreach from=$block->data item=link}
<li>
- <a href="{$link.URL}" class="external"
- {if isset($link.new_window) } onclick="window.open(this.href, '{$link.new_window.NAME}','{$link.new_window.FEATURES}'); return false;"{/if}
- >
+ <a href="{$link.URL}" class="external"{if isset($link.new_window)} onclick="window.open(this.href, '{$link.new_window.NAME}','{$link.new_window.FEATURES}'); return false;"{/if}>
{$link.LABEL}
</a>
</li>
{/foreach}
- </ul>
+ {/strip}</ul>
</dd>
-