The vBa CMPS addon somehow changes the relative URLs in the navbar template to absolutes.
I solved the problem by prepending /forum/ to these links in the vault_general_links template:
Code:
<if condition="$links['forum_link']">
<tr>
<td class="vbmenu_option"<if condition="$links['main_page']"> style="font-size: 70%"</if>><a href="/forum/forumdisplay.php?$session[sessionurl]f=$topinfo[forumid]&redirect=no"><if condition="$links['main_page']">-- </if>$topinfo[title] ($vbphrase[vault_list])</a></td>
</tr>
</if>
<if condition="$links['create_link']">
<tr>
<td class="vbmenu_option"><a href="/forum/newthread.php?$session[sessionurl]f=$topinfo[forumid]" title="$vbphrase[vault_new_article]" rel="nofollow">$vbphrase[vault_new_article]</a></td>
</tr>
</if>
It works.
Bookmarks