This is a nice little mod. Thanks StarBuG.
For those who are using vBadvanced CMPS on VB 3.8 and would like this on their Recent Threads block. Edit the template: adv_portal_recthreads_exp near the bottom. You will be replacing the last
<if condition so make sure the closing
</tr> is after that.
Search for:
PHP Code:
<if condition="$mod_options['portal_threads_showforum']">
<td class="$class_ftitle"><span class="smallfont"><a href="$vboptions[bburl]/forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></span></td>
</if>
And replace with:
PHP Code:
<if condition="$mod_options['portal_threads_showforum']">
<td align="center" class="$class_ftitle"><span class="smallfont">
<a href="$vboptions[bburl]/forumdisplay.php?$session[sessionurl]f=$thread[forumid]"><img src="$stylevar[imgdir_statusicon]/forum$thread[forumid]_new.gif" alt="$thread[forumtitle]" border="0" width="36" height="36" /></a><br>
<a href="$vboptions[bburl]/forumdisplay.php?$session[sessionurl]f=$thread[forumid]">$thread[forumtitle]</a></span></td>
</if>