Quote:
Originally Posted by ForumDog
Code:
<if condition="$forum[statusicon]=='new' OR $forum[statusicon]=='old'">
<div class="smallfont">
<if condition="$forum[statusicon]=='new'"><a href="search.php?$session[sessionurl]do=getnew&include=f=$forum[forumid]">$vbphrase[new_posts_nav]</a> | </if>
<a href="newthread.php?$session[sessionurl]do=newthread&f=$forum[forumid]" rel="nofollow">$vbphrase[newthread]</a>
<if condition="$show['searchbuttons']">| <a href="search.php?$session[sessionurl]f=$forum[forumid]" rel="nofollow">$vbphrase[search]</a></if>
<if condition="$vbulletin->options['externalrss']">| <a href="external.php?type=rss2&forumids=$forum[forumid]">RSS Feed</a></if>
<if condition="$vbulletin->options['externalxml']">| <a href="external.php?type=xml&forumids=$forum[forumid]">XML Feed</a></if>
<if condition="$vbulletin->options['externaljs']">| <a href="external.php?type=js&forumids=$forum[forumid]">JS Feed</a></if>
<if condition="$show['forumsubscription']">| <a href="subscription.php?$session[sessionurl]do=removesubscription&f=$forum[forumid]">$vbphrase[unsubscribe_from_this_forum]</a></if>
</if>
Known Issues:
- If there is no permission to start a new thread or search and there are no new posts to view but the unsubscribe link or a feed link appears then the line will begin with a |.
|
i have just replaced the original code with the new one you posted.
the original code showed the "New Thread", the new one doesnt.
if i change this line in the new code from
Code:
<a href="newthread.php?$session[sessionurl]do=newthread&f=$forum[forumid]" rel="nofollow">$vbphrase[newthread]</a>
to
Code:
<a href="newthread.php?$session[sessionurl]do=newthread&f=$forum[forumid]" rel="nofollow">Start New Thread</a>
it works again.
$vbphrase[newthread] wrong??