mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Added move topic viewing
git-svn-id: file:///svn/phpbb/trunk@852 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
601d3bcc47
commit
681709bb0b
1 changed files with 8 additions and 1 deletions
|
@ -380,6 +380,13 @@ if($total_topics || $total_announcements)
|
|||
{
|
||||
$topic_type = $lang['Topic_Sticky'] . " ";
|
||||
}
|
||||
else if($topic_type == TOPIC_MOVED)
|
||||
{
|
||||
$topic_type = $lang['Topic_Moved'] . " ";
|
||||
//New topic is hidden in topic_status
|
||||
$topic_rowset[$i]['topic_id'] = $topic_rowset[$i]['topic_status'];
|
||||
$topic_rowset[$i]['topic_status'] = TOPIC_UNLOCKED;
|
||||
}
|
||||
else
|
||||
{
|
||||
$topic_type = "";
|
||||
|
@ -555,4 +562,4 @@ $template->pparse("body");
|
|||
//
|
||||
include($phpbb_root_path . 'includes/page_tail.'.$phpEx);
|
||||
|
||||
?>
|
||||
?>
|
||||
|
|
Loading…
Add table
Reference in a new issue