Quote:
02-28-03 at 01:23 PM julius said this in Post #247
When you forward or send a reply to a private message, in the out box and the in box the "Today" is still there after some days. I think it would be better in these cases the date, as when you edit a post.
|
I solved this:
in private.php find (
NOT the first, but the second at about line 514):
PHP Code:
$message[postdate]=vbdate($dateformat,$message[dateline]);
$message[posttime]=vbdate($timeformat,$message[dateline]);
and change to:
PHP Code:
$message[postdate]=vbdatenoty($dateformat,$message[dateline]);
$message[posttime]=vbdatenoty($timeformat,$message[dateline]);
That's all.