WOW!!! Very very close! The rest of it was obvious after you cleared away the cobwebs for me...
The working substitution is acually like this:
replace this:
PHP Code:
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
indexpost($postid);
with this:
PHP Code:
if ($isfirst) {
$DB_site->query("UPDATE post SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE postid='$postid'");
$DB_site->query("UPDATE thread SET title='".addslashes(htmlspecialchars($title))."',iconid='$iconid' WHERE threadid='$threadid'");
}
$DB_site->query("DELETE FROM searchindex WHERE postid=$postid");
indexpost($postid);
That will allow thread titles & icons to be edited without being affected by similarly edited replies.
Both work perfectly now...THANKS A BUNCH, DUDE!!!...my headache is fading already.