Quote:
Originally Posted by ForumDog
Try replacing it with this:
Code:
<if condition="!$forum[statusicon] == 'new_lock' OR !$forum[statusicon] == 'old_lock' OR !$forum[statusicon] == 'link'">
<div class="smallfont">
<if condition="$forum[statusicon]=='new'">
<a href="search.php?$session[sessionurl]do=getnew&include=$forum[forumid]">$vbphrase[new_posts_nav]</a> |
</if>
<a href="newthread.php?$session[sessionurl]do=newthread&f=$forum[forumid]">New Thread</a> |
<a href="search.php?$session[sessionurl]f=$forum[forumid]">$vbphrase[search]</a>
</div>
</if>
That should (untested) mean that if the forum isn't locked or a link, display the links. Search is included in that, so if you want to allow people to search locked forums you'll have to move the </if> tag up so the Search link is outside it.
|
I will try this... Do you know how many queries this gernerates on every page load?