That's why I gave you the php manual page, it tells you how to make your own date format string. But since you're too lazy, here...
For "
21-3, 9:08 PM" Use:
PHP Code:
$gnptime = vbdate('j-n, g:i', $gthread[lastpost]);
For the "1 Minute ago" thing, normally date's aren't shown - that's generally only if the post was made within an hour in the past. You'll have to do some math if you want that to display properly.
PHP Code:
//number of minutes between now and last post
$time_difference = (time() - $gthread[lastpost]) / 60;
if( $time_difference < 60 )
{
$gnptime = vbdate('j-n', $gthread[lastpost]);
$gnptime .= ', '. $time_difference .' minutes ago';
}
else
{
$gnptime = vbdate('j-n, g:i', $gthread[lastpost]);
}