ok.. another little bug discovered... and fixed.
in forum/postings.php, find:
Code:
updateforumcount($threadinfo[forumid]);
if ($visible) {
replace it with:
Code:
updateforumcount($threadinfo[forumid]);
$lastpost=$DB_site->query_first("SELECT * FROM forum WHERE forumid='$threadinfo[forumid]'");
if($lastpost['lastpost']==$threadinfo['dateline']) {
$DB_site->query("UPDATE forum SET lastthread='".addslashes(htmlspecialchars($title))."' WHERE forumid='$threadinfo[forumid]'");
}
if ($visible) {
that fixes a bug regarding the lastthread update, while you edit the thread (admin options).
if you download the file, make sure it says version 1.2.