Weird, seems the code in the first post doesn't work. I could've sworn it was differenet.
Anyway, Joshua, in register.php find this:
Code:
$userid=$DB_site->insert_id();
and right after it add this code:
Code:
// get hold of his posts and update threads
$DB_site->query("UPDATE post SET userid='$userid' WHERE username='".addslashes(htmlspecialchars($username))."' AND visible<>0");
$DB_site->query("UPDATE thread SET postuserid='$userid' WHERE postusername='".addslashes(htmlspecialchars($username))."' AND visible<>0");
$totalposts=$DB_site->query_first("SELECT COUNT(postid) AS posts FROM post WHERE userid='$userid'");
$DB_site->query("UPDATE user SET posts='$totalposts[posts]' WHERE userid='$userid'");
This is the exact code we use on this board, so it has to work.