So, to add link to lastposter'sprofile, replace in admin/functions.php :
PHP Code:
$dposteurs=$DB_site->query_first("SELECT lastposter FROM thread WHERE forumid='$forumid' ORDER BY threadid DESC");
$dposteur=$dposteurs['lastposter'];
with
PHP Code:
$dposteurs=$DB_site->query_first("SELECT lastposter, userid FROM thread,user WHERE (thread.forumid='$forumid' AND
user.username=thread.lastposter) ORDER BY threadid DESC LIMIT 0,1");
$dposteurnom=$dposteurs['lastposter'];
$dposteurid=$dposteurs['userid'];
and in the template forumdisplay_stats, replace $dposteur with
PHP Code:
<a href="member.php?s=$session[sessionhash]&action=getinfo&userid=$dposteurid"
target=_blank>$dposteurnom</a>