Quote:
Originally Posted by siNix
is there any way to show the start date of the 'latest threads'?
|
I have tried doing this using the same method posted above for adding the date to latest news output.
Code:
array(
'threadid' => $Thread['threadid'],
'threadname' => $Thread['title'],
'postuserid' => $Thread['postuserid'],
'postusername' => $Thread['postusername'],
'replies' => vb_number_format($Thread['replycount']),
'views' => vb_number_format($Thread['views']),
'date' => vbdate($vbulletin->options['dateformat'], $Thread['dateline']),
'time' => vbdate($vbulletin->options['timeformat'], $Thread['dateline']),
'lastposter' => $Thread['lastposter'],
)
Of course I changed News to Thread, still cannot get it to work.