i've had it working on 2.26/7/8&9 but its not straight forward on 2.3 because
Code:
$lastposts=$DB_site->query_first("SELECT MAX(lastpost) AS lastpost FROM thread WHERE forumid=$forumid AND visible=1 AND open<>10");
if ($lastposts['lastpost']>$lastpost) {
$lastposts=$DB_site->query_first("
SELECT lastpost,lastposter
FROM thread
WHERE forumid = $forumid AND lastpost = '$lastposts[lastpost]'");
$lastpost=$lastposts['lastpost'];
$lastposter=$lastposts['lastposter'];
}
$lastpostquery=",lastpost='$lastpost',lastposter='".addslashes($lastposter)."'";
isnt in v2.3 /functions/admin/functions.php. How did you get your v2.3.0 working? TIA