Quote:
Originally Posted by Cryo
You can add $thread[dateline] in the threadbit template in the same area prefixes are located. I'm sure there's an easy way to convert that to a readable format, but I don't see date() listed as a safe function for templates.
|
You'd just need a plugin to change the unix timestamp to the format you want.
PHP Code:
$thread['dateline'] = vbdate($vbulletin->options['dateformat'], $thread['dateline']);
Something like that. Look up vbdate in the API (link is under Quick Links) and that should help you format it. You may need a couple of plugins - one at threadbit_display and the other at search_results_threadbit.