diff --git a/phpBB/modcp.php b/phpBB/modcp.php
index 5e113f93ca..69051bb411 100644
--- a/phpBB/modcp.php
+++ b/phpBB/modcp.php
@@ -995,7 +995,7 @@ switch($mode)
WHERE t.forum_id = $forum_id
AND t.topic_poster = u.user_id
AND p.post_id = t.topic_last_post_id
- AND t.topic_type <> " . TOPIC_MOVED . "
+ AND t.topic_status <> " . TOPIC_MOVED . "
ORDER BY t.topic_type DESC, p.post_time DESC
LIMIT $start, " . $board_config['topics_per_page'];
@@ -1029,29 +1029,41 @@ switch($mode)
}
else
{
- $folder_image = "";
+ if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE )
+ {
+ $folder_image = "
";
+ }
+ else if( $topic_rowset[$i]['topic_type'] == POST_STICKY )
+ {
+ $folder_image = "
";
+ }
+ else
+ {
+ $folder_image = "
";
+ }
}
$topic_id = $topic_rowset[$i]['topic_id'];
-
- if( $topic_rowset[$i]['topic_type'] == POST_STICKY )
- {
- $topic_type = $lang['Topic_Sticky'] . " ";
- }
- else if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE )
+ $topic_type = $topic_rowset[$i]['topic_type'];
+
+ if($topic_type == POST_ANNOUNCE)
{
$topic_type = $lang['Topic_Announcement'] . " ";
}
+ else if($topic_type == POST_STICKY)
+ {
+ $topic_type = $lang['Topic_Sticky'] . " ";
+ }
else
{
- $topic_type = "";
+ $topic_type = "";
}
-
+
if( $topic_rowset[$i]['topic_vote'] )
{
$topic_type .= $lang['Topic_Poll'] . " ";
}
-
+
$topic_title = $topic_rowset[$i]['topic_title'];
if( count($orig_word) )
{
diff --git a/phpBB/templates/subSilver/modcp_body.tpl b/phpBB/templates/subSilver/modcp_body.tpl
index 372d746152..5087fa980b 100644
--- a/phpBB/templates/subSilver/modcp_body.tpl
+++ b/phpBB/templates/subSilver/modcp_body.tpl
@@ -23,7 +23,7 @@