PDA

View Full Version : Today/ Yesterday Timestamp Mod Request


AviationForum
07-07-2002, 08:23 PM
Can someone modify the Today/Yesterday Timestamp hack so that instead of just saying "Today" it gives the date and then in parantheses "Today".

EXAMPLE:

standard vB: 07-07-02 11:36pm
w/ hack: Yesterday 11:36pm
w/ my request: 07-07-02 (Yesterday) 11:36pm

the other possibility: Yesterday (07-07-02) 11:36pm

What do you think?

Logician
07-07-2002, 09:26 PM
admin/functions.php:

find:

if ($date==$todaydate) {
$date="Today";
}
if ($date==$yestdate) {
$date="Yesterday";
}


Replace it as:


if ($date==$todaydate) {
$date="Today (".date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600).")";
}
if ($date==$yestdate) {
$date="Yesterday (".date($format,$timestamp+($bbuserinfo['timezoneoffset']-$timeoffset)*3600).")";
}