Quote:
Originally Posted by i-Symbian.Com
2. How to display time of the post in the News?
Cheers!

|
Find the following in ouput_News()
PHP Code:
array(
'threadid' => $News['threadid'],
'threadname' => $News['title'],
'postuserid' => $News['postuserid'],
'postusername' => $News['postusername'],
'post' => $bbcode_parser->parse(unhtmlspecialchars($News['pagetext']), $f),
'comments' => vb_number_format($News['replycount']),
)
And add the following to the array:
PHP Code:
'date' => vbdate($vbulletin->options['dateformat'], $News['dateline']),
'time' => vbdate($vbulletin->options['timeformat'], $News['dateline']),
Then add date and time to your template.