Ok, here is what I have now:
PHP Code:
// update forum stuff
if ($newthreadtitle) {
$newtitle="'".addslashes(htmlspecialchars($newthreadtitle))."'";
} else {
$newtitle="'".addslashes(htmlspecialchars($threadinfo[title]))."'";
}
if ($visible==1) {
$DB_site->query("UPDATE forum SET replycount=replycount+1,lastpost='".time()."',lastthread=$newtitle,lastposter='".addslashes($postusername)."' WHERE forumid IN ($foruminfo[parentlist])");
}
This way, it only updates it as the newthreadtitle if there is one. Otherwise, it leaves it alone. Wouldn't this way be better? Or not? I'm really not sure. (But it works!

)
Thank you sir, I never thought of messing with that area.