
12-28-2005, 04:22 PM
|
|
|
Join Date: May 2005
Location: PL
Posts: 101
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by -=Sniper=-
put this in the threadbit_process hook
PHP Code:
if ($thread['dateline'])
{
$thread['threaddate'] = vbdate($vbulletin->options['dateformat'], $thread['dateline'], 1);
$thread['threadtime'] = vbdate($vbulletin->options['timeformat'], $thread['dateline']);
}
then in the threadbit template you can use
HTML Code:
<span class="smallfont">$thread[threaddate]</span>
<span class="time">$thread[threadtime]</span>
|
Thanks - it works.
|