Revision: 8786
http://xoops.svn.sourceforge.net/xoops/?rev=8786&view=rev
Author: beckmi
Date: 2012-01-23 08:57:10 +0000 (Mon, 23 Jan 2012)
Log Message:
-----------
Fixing submenu link (it pointed to the currently selected module)
Modified Paths:
--------------
XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html
Modified: XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html
===================================================================
--- XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html 2012-01-23 07:34:31 UTC (rev 8785)
+++ XoopsCore/branches/2.6.x/2.6.0/htdocs/modules/system/themes/default/xotpl/menu.html 2012-01-23 08:57:10 UTC (rev 8786)
@@ -11,7 +11,7 @@
<a href="<{$mod->getInfo(link_admin)}>" title="<{$mod->getVar(name)}>"><{$mod->getVar(name)}></a>
<ul class="dropdown-menu">
<{foreach item=option from=$mod->getInfo(options)}>
- <li><a href="<{$option.link}>"><{$option.title}></a></li>
+ <li><a href="<{xoAppUrl modules}><{$mod->getInfo(dirname)}>/<{$option.link}>"><{$option.title}></a></li>
<{/foreach}>
</ul>
<{else}>
@@ -31,7 +31,7 @@
<a href="<{$mod->getInfo(link_admin)}>" title="<{$mod->getInfo(name)}>"><{$mod->getInfo(name)}></a>
<ul class="dropdown-menu">
<{foreach item=option from=$mod->getInfo(options)}>
- <li><a href="<{$option.link}>"><{$option.title}></a></li>
+ <li><a href="<{xoAppUrl modules}><{$mod->getInfo(dirname)}>/<{$option.link}>"><{$option.title}></a></li>
<{/foreach}>
</ul>
<{else}>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|