15
BUG:
Short overview other submittions by user. Link to entry doesn't work. That is because de name of the module isn't picked up.
<{$link.module_dir}>/
should be: <{$wfllink.module_dir}>/
FIX:
File: templates->wflinks_singlelink.html
Line prox: 116
old code
<{if $wfllink.otherlinx > 0}>
<br /><{$other_links}>
<{foreach item=link_user from=$link_uid}>
<div style="margin-left: 10px;"> <a href="<{$xoops_url}>/modules/<{$link.module_dir}>/singlelink.php?cid=<{$link_user.cid}>&lid=<{$link_user.lid}>"><{$link_user.title}>a> (<{$link_user.published}>) div>
<{/foreach}>
<{/if}>
Replace with:
<{if $wfllink.otherlinx > 0}>
<br /><{$other_links}>
<{foreach item=link_user from=$link_uid}>
<div style="margin-left: 10px;"> <a href="<{$xoops_url}>/modules/<{$wfllink.module_dir}>/singlelink.php?cid=<{$link_user.cid}>&lid=<{$link_user.lid}>"><{$link_user.title}>a> (<{$link_user.published}>) div>
<{/foreach}>
<{/if}>