I am guessing you are referring to the area on all vBulletins where it says something like:
Quote:
Today 01:51 AM
|
And not on some boards, like vBulletin.org, where in the postbit it says:
If this is the case then, do this:
#1. In functions.php, find:
PHP Code:
$post[posttime]=vbdate($timeformat,$post[dateline]);
Then replace it with:
PHP Code:
$secondsformat = "g:i:s a";
$post[posttime]=vbdate($secondsformat,$post[dateline]);
And your date will show up like this:
Quote:
Today, 9:54:22 pm
|
Hope that helps.