MyBB Community Forums

Full Version: Another question! "Date"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Another question! First question (Not resolved) http://community.mybboard.net/thread-69131.html.


I'm looking to make the 'last post' bit on the index page display ONLY in date format. I don't want it to say 'today' or 'yesterday'. Just a date!

TIA
Anyone help me? I did this before but forgot.
Line 1004 of ./forumdisplay.php:

$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost']);
$lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost']);

to:

$lastpostdate = my_date($mybb->settings['dateformat'], $thread['lastpost'], 0, 0);
$lastposttime = my_date($mybb->settings['timeformat'], $thread['lastpost'], 0, 0);