In the vbAdvanced modules the header of the module has an incorect link to local_links.php, look below to fix.
ldm-new.php
Line 91
change this
Code:
$hottitle = '<a href="'.$vbulletin->options['homeurl'].'/'.LINKS_SCRIPT.'.php">'.'New Links'.'</a>';
to this
Code:
$hottitle = '<a href="'.$vbulletin->options['bburl'].'/'.LINKS_SCRIPT.'.php">'.'New Links'.'</a>';
================================================== ========================
ldm-hot.php
Line 91
change this
Code:
$hottitle = '<a href="'.$vbulletin->options['homeurl'].'/'.LINKS_SCRIPT.'.php">'.'Hot Links'.'</a>';
to this
Code:
$hottitle = '<a href="'.$vbulletin->options['bburl'].'/'.LINKS_SCRIPT.'.php">'.'Hot Links'.'</a>';
Also was there a reason you changed the links_hotlinks template in your 2.05 beta to this version
From this
Code:
<tr>
<td class="alt1"><span class="smallfont">
<a href="$vboptions[bburl]/local_links.php?action=jump&id=$linkid" target="_blank">$linkname</a>
</span>
</td>
<td class="alt2">
<span class="smallfont">$linkhits</span>
</td>
</tr>
To this
Code:
<a href="$vboptions[bburl]/local_links.php?action=jump&id=$linkid" target="_blank">$linkname</a> ($linkhits)<br />
As it makes the vbAdvanced module look very bland and boring.