Ok. I've attached a preview of how it looks. Just the date is missing.
Here is what that code looks like in my forumdisplay.php (without hack applied). These are from lines 595 to 604:
PHP Code:
if ($wordwrap!=0) {
$thread[title]=dowordwrap($thread[title]);
}
$thread[lastreplydate]=vbdate($dateformat,$thread[lastpost]);
$thread[lastreplytime]=vbdate($timeformat,$thread[lastpost]);
$thread[gotonew]='';
I've pasted the 2 lines of code right after the 2nd instance, on line 601-602 respectively.
Here is what my forumdisplaybit template looks like:
Code:
<tr align="center">
<td bgcolor="#F1F1F1"><img src="https://vborg.vbsupport.ru/greentek/$thread[newoldhot].gif" border="0" alt=""></td>
<td bgcolor="#DFDFDF">$thread[icon]</td>
<td bgcolor="#F1F1F1" align="left" width="70%" onMouseOver="this.style.backgroundColor='#EBECEA'; this.style.cursor='hand';" onMouseOut="this.style.backgroundColor='#F1F1F1';" onClick="window.location.href='showthread.php?s=$session[sessionhash]&threadid=$thread[threadid]'"><normalfont>$thread[gotonew] $paperclip$thread[movedprefix]$thread[typeprefix]<a href="showthread.php?s=$session[sessionhash]&threadid=$thread[threadid]">$thread[title]</a></normalfont> <smallfont>$thread[pagenav]</smallfont></td>
<td bgcolor="#DFDFDF" width="30%" valign="middle" align="right" nowrap><smallfont>$thread[postdate] $thread[posttime]<br>by <b>$thread[postedby]</b></smallfont></td>
<td bgcolor="#F1F1F1"><normalfont><a href="javascript:who($thread[threadid])">$thread[replycount]</a></normalfont></td>
<td bgcolor="#DFDFDF"><normalfont>$thread[views]</normalfont></td>
$threadrating
<td bgcolor="$backcolor">
<table cellpadding="0" cellspacing="0" border="0" width="100%" id="ltlink"><tr align="right">
<td nowrap><smallfont>$thread[lastreplydate] <font color="#006000">$thread[lastreplytime]</font><br>
by <a href="member.php?action=getinfo&find=lastposter&threadid=$thread[threadid]"><b>$thread[lastposter]</b></a></smallfont></td>
<td nowrap> <a href="showthread.php?s=$session[sessionhash]&goto=lastpost&threadid=$thread[threadid]"><img src="https://vborg.vbsupport.ru/greentek/lastpost.gif" border="0" alt="Go to last post"></a></td>
</tr></table>
</td>
</tr>