Quote:
Originally Posted by Pacman15
Can you add the Date an time?  I really need that 
|
Not sure how safe/good this is, but after
PHP Code:
'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']),
I added:
PHP Code:
'date' => date("F j, Y, g:i a",$News['dateline']),
And this automatically made the {date} substitution available, you can change the date part to whichever you want, again I'm not sure it's completely good, or which ever.
I'm really new to this