diff options
author | friendica <info@friendica.com> | 2013-08-13 20:57:03 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-08-13 20:57:03 -0700 |
commit | 9508967c7350e69bf3321aaa63f5527a3e8096f4 (patch) | |
tree | c2b6c78f47cf2c7a1623d4bc528b58cc2d8793fc /view/tpl/usermenu.tpl | |
parent | 680baff73d70769714d806c00cc84c6e65faba0f (diff) | |
download | volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.tar.gz volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.tar.bz2 volse-hubzilla-9508967c7350e69bf3321aaa63f5527a3e8096f4.zip |
menu management is now functional with the exception of acl's (and of course a way to display the menus you create, and probably a bit more input sanity checking)
Diffstat (limited to 'view/tpl/usermenu.tpl')
-rw-r--r-- | view/tpl/usermenu.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/usermenu.tpl b/view/tpl/usermenu.tpl index 771ae4b2a..3904f4696 100644 --- a/view/tpl/usermenu.tpl +++ b/view/tpl/usermenu.tpl @@ -5,7 +5,7 @@ {{if $items }} <ul class="pmenu-body"> {{foreach $items as $mitem }} -<li class="pmenu-item"><a href="{{$mitem.mitem_link}}">{{$mitem.mitem_desc}}</a></li> +<li class="pmenu-item"><a href="{{$mitem.mitem_link}}" {{if $mitem.newwin}}target="_blank"{{/if}}>{{$mitem.mitem_desc}}</a></li> {{/foreach }} </ul> {{/if}} |