Bug tracker
Topics list splitted in case "announce" topic moved (fix completed in vcs)
In the attached screen shot, the "test 8" topic has been moved to another forum, and promoted to "announce".
(maybe this can be solved when going through the shadow topics, if a topic (the original one) is found "Announce", to add it to the announcement_list and remove it from the normal opic_list)
=>in viewforum.php,
AFTER
$rowset[$orig_topic_id] = $row;
ADD
// if target topic is announce, add it to announcement_list and not to rowset
if (($row['topic_type'] == POST_GLOBAL) || ($row['topic_type'] == POST_ANNOUNCE))
{
unset($topic_list[array_search($orig_topic_id, $topic_list)]);
$announcement_list[] = $orig_topic_id;
}