In your includes/functions_newpost.php, find the following:
PHP Code:
// we are here, so we may have a doublepost -> do more exact checkings
$doublepost = $DB_site->query_first("
SELECT postid, pagetext, post.title, post.userid, post.attach
and replace by:
PHP Code:
// we are here, so we may have a doublepost -> do more exact checkings
$doublepost = $DB_site->query_first("
SELECT postid, pagetext, post.title, post.userid, post.attach, post.dateline AS dateline
Then find:
PHP Code:
$post['message'] = $doublepost['pagetext'] . $dp_settings['spacer'] . $post['message'];
and replace by:
PHP Code:
$post['message'] = $doublepost['pagetext'] . $dp_settings['spacer'] . "$bbuserinfo[username] posted " . ((TIMENOW - $doublepost[dateline]) / 60) . " minutes later:\n" . $post['message'];
I don't have this hack installed and i didn't test the above example. So test this first on a testboard.