PDA

View Full Version : A pretty odd request but i REALLY need this help.


Iguacu
11-14-2002, 11:51 PM
Okay, this is a pretty strange hack request, but i REALLY need this made to make something on my forums work right,

You know how in your posts its says the hour and minutes?Well i need it to show the hour, minutes AND the SECONDS as well.

Coudl someone please help me ;_;

Velocd
11-15-2002, 04:33 AM
I am guessing you are referring to the area on all vBulletins where it says something like:

https://vborg.vbsupport.ru/ Today 01:51 AM

And not on some boards, like vBulletin.org, where in the postbit it says:

Local Time: 06:18 AM


If this is the case then, do this:

#1. In functions.php, find:

$post[posttime]=vbdate($timeformat,$post[dateline]);


Then replace it with:

$secondsformat = "g:i:s a";
$post[posttime]=vbdate($secondsformat,$post[dateline]);


And your date will show up like this:


https://vborg.vbsupport.ru/ Today, 9:54:22 pm

Hope that helps.