News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

Time Passed Since Last Reply

Started by [SiNaN], August 18, 2008, 11:28:21 AM

Previous topic - Next topic

[SiNaN]

Question: Is it possible to display how much time passed from last reply instead of displaying the date of last reply on Board Index?
Original Topic: http://www.simplemachines.org/community/index.php?topic=248091.0

../Sources/BoardIndex.php

Find:

// Prepare the subject, and make sure it's not too long.

Replace:


$time = 0;
$timeh = 0;
$timem = 0;
$times= 0;

$time = time() - $row_board['posterTime'];
if($time > 60) {
$timem = $time / 60;
$timem = (int) $timem;
$times = $time % 60;
}
else
$times = $time;

if($timem > 60) {
$timeh = $timem / 60;
$timeh = (int) $timeh;
$timem = $timem % 60;
}
$time = (!empty($timeh) ? $timeh . 'H ' : '') . (!empty($timem) ? $timem . 'M ' : '') . $times . 'S';

// Prepare the subject, and make sure it's not too long.


Find:

'timestamp' => forum_time(true, $row_board['posterTime']),

Replace:

'timestamp' => forum_time(true, $row_board['posterTime']),
'timebefore' => $time,


../Themes/your_theme/BoardIndex.template.php

Find:

$board['last_post']['time']

Replace:

$board['last_post']['timebefore']
Former SMF Core Developer | My Mods | SimplePortal

Advertisement: