In editpost.php, replace this:
PHP Code:
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
indexpost($postid);
with
PHP Code:
if ($isfirst) {
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE postid='$postid'");
}
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
indexpost($postid);
that should work.