I think it is a good idea to use this code instead:
Quote:
<!-- Unanswered Posts -->
<tr><td class="vbmenu_option"><a href="'$vboptions[bburl]/search.php?do=process&replyless=1&replylimit=0&exc lude=30">Unanswered Posts</a></td></tr>
<!-- /Unanswered Posts -->
|
>
it is actually more vb compliant.
It is also a good idea to make a phrase:
varname: unanswered_posts
text: Unanswered Posts
and use this code:
Quote:
<!-- Unanswered Posts -->
<tr><td class="vbmenu_option"><a href="$vboptions[bburl]/search.php?do=process&replyless=1&replylimit=0&exc lude=30">$vbphrase[unanswered_posts]</a></td></tr>
<!-- /Unanswered Posts -->
|