Log in

View Full Version : proper date format in postbit


Danny
08-15-2002, 06:56 PM
Hi All how woulc i add proper date format in postbit?

i.e. instead of "1029439920" show "09:14 14-Aug-2002"

i got "1029439920" from putting $post[lastvisit] in postbit template.

Xenon
08-15-2002, 10:39 PM
open admin/functions.php
find this:
$post[postdate]=vbdate($dateformat,$post[dateline]);
$post[posttime]=vbdate($timeformat,$post[dateline]);


below add: $post[lastvisit]=vbdate($dateformat." ".$timeformat,$post[lastvisit]);

Danny
08-18-2002, 08:36 AM
cool thanks,

just one more question if i now wanted to only $post[lastvisit] to admins and mods

what would i do for that?

g-force2k2
08-18-2002, 09:45 AM
Danny just take Xenon's code and replace it with:


if(($bbuserinfo[usergroupid] == 5) OR ($bbuserinfo[usergroupid] == 6) OR ($bbuserinfo[usergroupid] == 7)) {
$post[lastvisit]=vbdate($dateformat." ".$timeformat,$post[lastvisit]);
} else {
$post[lastvisit] = "";
}


see if that works?

g-force2k2

Danny
08-18-2002, 01:12 PM
that worked fantastic thanks both of you :)