I have found a BUG in the portal page in the:
Latest Threads center block
When it shoes the
Go To First Post icon, it never shows the
Thread Icon until the "First Post" Icon disapears, then it displays the "Thread Icon" fine.
Anybody know a quick fix for this?
Here is an image to show you what I mean:
Here is the code that I know need editing to fix this problem from the:
vbindex_centerthreadbit template.
Code:
<tr>
<td class="alt2" style="text-align: center">
<if condition="$show['icon']">
<img src="$vboptions[bburl]/$thread[threadiconpath]" border="0" alt="$thread[threadicontitle]" title="$thread[threadicontitle]" style="vertical-align: text-middle; text-align: center" />
</if>
</td>
<td class="alt1Active" id="t$thread[threadid]" title="$thread[preview]">
<div>
<if condition="$thread['issubscribed']">
<span style="float: $stylevar[right]"><img src="$stylevar[imgdir_misc]/subscribed.gif" alt="" title="$vbphrase[subscribed_to_thread]" align="center" /></span>
</if>
<if condition="$show['firstnew']">
<a href="$vboptions[bburl]/showthread$ext?$session[sessionurl]threadid=$thread[threadid]&goto=newpost"><img src="$stylevar[imgdir_button]/firstnew.gif" alt="$vbphrase[go_to_first_new_post]" border="0" /></a>
</if>
<a href="$vboptions[bburl]/showthread$ext?$session[sessionurl]t=$thread[threadid]$thread[highlight]"><if condition="$show['firstnew']"><strong>$thread[title]</strong><else />$thread[title]</if></a>
</div>
<div class="smallfont">
<span style="float: $stylevar[right]">$vbphrase[forum]: <a href="$vboptions[bburl]/forumdisplay$ext?$session[sessionurl]forumid=$thread[forumid]"><em>$thread[forumtitle]</em></a></span>
<span style="cursor:hand" onclick="window.open('$vboptions[bburl]/member$ext?$session[sessionurl]userid=$thread[postuserid]')">$thread[postusername]</span>
</div>
</td>
<td class="alt2" title="<phrase 1="$thread[replycount]" 2="$thread[views]">$vbphrase[replies_x_views_y]</phrase>">
<div class="smallfont" style="text-align:$stylevar[right]; white-space:nowrap">
$thread[date] <if condition="$vboptions['yestoday'] != 2"><span class="time">$thread[time]</span></if><br />
<phrase 1="$vboptions[bburl]/member$ext?find=lastposter&threadid=$thread[threadid]" 2="$thread[lastposter]">$vbphrase[by_x]</phrase> <a href="$vboptions[bburl]/showthread.php?$session[sessionurl]goto=lastpost&threadid=$thread[threadid]"><img src="$stylevar[imgdir_button]/lastpost.gif" alt="$vbphrase[go_to_last_post]" border="0" /></a>
</div>
</td>
<td class="alt1Active" style="text-align: center">
$thread[replycount]
</td>
<td class="alt2" style="text-align: center">
$thread[views]
</td>
</tr>