okay, okay...i figured it out myself.
FIND
PHP Code:
//Update forum if postdate has changed.
if ($dp_settings['dobump'])
{
$DB_site->query("
UPDATE " . TABLE_PREFIX . "forum
SET lastpost = " . TIMENOW . ",
lastposter = '" . addslashes($post['postusername']) . "',
lastthread = '" . addslashes($threadinfo['title']) . "',
lastthreadid = $threadinfo[threadid],
lasticonid = " . iif($threadinfo['pollid'], -1, $threadinfo['iconid']) . "
WHERE forumid = $foruminfo[forumid]
");
}
AFTER THAT, ADD:
PHP Code:
//Now lets update the editlog
$reason = "Automerged Doublepost";
$lastedit = $DB_site->query_first("
SELECT postid, userid, username, dateline, reason
FROM " . TABLE_PREFIX . "editlog
WHERE postid = $post[postid]
");
if ($lastedit['postid']) {
$DB_site->query("
UPDATE " . TABLE_PREFIX . "editlog
SET postid = $lastedit[postid],
userid = $bbuserinfo[userid],
username = '" . addslashes($post['postusername']) . "',
dateline = " . TIMENOW . ",
reason = '" . addslashes($reason) . "'
WHERE postid = $post[postid]
");
} else {
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "editlog
(postid, userid, username, dateline, reason)
VALUES ($post[postid], $bbuserinfo[userid],
'" . addslashes($post['postusername']) . "',
" . TIMENOW . ",'" . addslashes($reason) . "')
");
}