Quote:
Originally Posted by mharmon
Any update on why in private messages it shows a long number instead of the Days, etc...?
|
In includes/functions_showthread.php
find:
Code:
// format posts number
$post['posts'] = vb_number_format($post['posts']);
change it to:
Code:
// Hack: get the timespent and avgtimespent
$post['avgtimespent'] = explain_time(floor($post['timespent']/((TIMENOW-$post['joindate'])/86400)));
$post['timespent'] = explain_time($post['timespent']);
// format posts number
$post['posts'] = vb_number_format($post['posts']);