Xenon to me any post after another is double posting

doesn't matter about the dateline to me... but thats just my opinion...
okay here's another scenario...
Run the query ::
PHP Code:
ALTER TABLE thread ADD lastposterid int(10) NOT NULL DEFAULT '0'
open newreply.php
find:
PHP Code:
$DB_site->query("UPDATE thread SET lastpost='".time()."',replycount='$replies[replies]',lastposter='".addslashes($postusername)."' WHERE threadid='$threadid'");
} else {
$DB_site->query("UPDATE thread SET lastpost='".time()."',replycount=replycount+1,lastposter='".addslashes($postusername)."' WHERE threadid='$threadid'");
replace with:
PHP Code:
$DB_site->query("UPDATE thread SET lastpost='".time()."',replycount='$replies[replies]',lastposter='".addslashes($postusername)."', lastposterid='$postuserid' WHERE threadid='$threadid'");
} else {
$DB_site->query("UPDATE thread SET lastpost='".time()."',replycount=replycount+1,lastposter='".addslashes($postusername)."', lastposterid='$postuserid' WHERE threadid='$threadid'");
find:
PHP Code:
".iif ($foruminfo[countposts],"posts=posts+1,","")."
replace with:
PHP Code:
".iif ($foruminfo[countposts],"posts=posts+'".iff($threadinfo[lastposterid] == "$bbuserinfo[userid]" AND ((time() - $threadinfo[lastpost]) / 86400) > 5,'0','1')."' ,","")."
haven't tested the code... but it may work

regards...
g-force2k2