-
Bug
-
Resolution: Fixed
-
3.0.0
-
None
-
PHP Environment:
Database:
If you move a topic promoted to an "Announce", the list of topics in the forum whose moved topic is originated is split in 2 parts just after the row the topic should have been if not put in announce.
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))

