I'm coming from a vbPortal uninstallation and later vbHome Lite installation, and I must say THANKS TECK!

Server breathes again!
however:
Quote:
Originally Posted by TECK
i have to make you happy right? 
first you need to change also the poster... i think since you want to show the last post time, right?
anyway, do this... in vbHL index.php find:
Code:
$thread[time] = vbdate($timeformat, $thread[dateline]);
$thread[date] = vbdate($dateformat, $thread[dateline]);
replace it with:
Code:
$thread[time] = vbdate($timeformat, $thread[lastpost]);
$thread[date] = vbdate($dateformat, $thread[lastpost]);
then, in your home_threadbits template, change:
Code:
<a href="$bburl/member.php?s=$session[sessionhash]&action=getinfo&userid=$thread[postuserid]">$thread[postusername]</a>
to:
Code:
<a href="$bburl/member.php?s=$session[sessionhash]&action=getinfo&find=lastposter&forumid=$thread[forumid]">$thread[lastposter]</a>
|
I want to display the LAST POSTER on the threadbits with the modifications above, which first part seems already to be applied on the v4.2, but the second part does not work for me, i.e. shows the thread STARTER, not the LAST POSTER.
TECK? Any1?
Thanks!