diff options
author | James Atkinson <thefinn@users.sourceforge.net> | 2001-11-03 01:12:54 +0000 |
---|---|---|
committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-11-03 01:12:54 +0000 |
commit | 2297465c60d778ba4e4026ba8771972aa149e1d7 (patch) | |
tree | 01d5b18336e62b046d52009a5eb50deef2d739ed /phpBB | |
parent | 167b1a536b7ea148cfa14d1596268f57686554a6 (diff) | |
download | forums-2297465c60d778ba4e4026ba8771972aa149e1d7.tar forums-2297465c60d778ba4e4026ba8771972aa149e1d7.tar.gz forums-2297465c60d778ba4e4026ba8771972aa149e1d7.tar.bz2 forums-2297465c60d778ba4e4026ba8771972aa149e1d7.tar.xz forums-2297465c60d778ba4e4026ba8771972aa149e1d7.zip |
Some updates to modcp to show the topic type and correct folder icons
git-svn-id: file:///svn/phpbb/trunk@1259 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/modcp.php | 32 | ||||
-rw-r--r-- | phpBB/templates/subSilver/modcp_body.tpl | 2 | ||||
-rw-r--r-- | phpBB/viewforum.php | 3 |
3 files changed, 25 insertions, 12 deletions
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 = "<img src=\"" . $images['folder'] . "\">"; + if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE ) + { + $folder_image = "<img src=\"" . $images['folder_announce'] . "\">"; + } + else if( $topic_rowset[$i]['topic_type'] == POST_STICKY ) + { + $folder_image = "<img src=\"" . $images['folder_sticky'] . "\">"; + } + else + { + $folder_image = "<img src=\"" . $images['folder'] . "\">"; + } } $topic_id = $topic_rowset[$i]['topic_id']; - - if( $topic_rowset[$i]['topic_type'] == POST_STICKY ) + $topic_type = $topic_rowset[$i]['topic_type']; + + if($topic_type == POST_ANNOUNCE) { - $topic_type = $lang['Topic_Sticky'] . " "; + $topic_type = $lang['Topic_Announcement'] . " "; } - else if( $topic_rowset[$i]['topic_type'] == POST_ANNOUNCE ) + else if($topic_type == POST_STICKY) { - $topic_type = $lang['Topic_Announcement'] . " "; + $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 @@ <!-- BEGIN topicrow --> <tr> <td class="row1" align="center" valign="middle">{topicrow.FOLDER_IMG}</td> - <td class="row1"> <span class="topictitle"><a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td> + <td class="row1"> <span class="topictitle">{topicrow.TOPIC_TYPE}<a href="{topicrow.U_VIEW_TOPIC}" class="topictitle">{topicrow.TOPIC_TITLE}</a></span></td> <td class="row2" align="center" valign="middle"><span class="postdetails">{topicrow.REPLIES}</span></td> <td class="row1" align="center" valign="middle"><span class="postdetails">{topicrow.LAST_POST}</span></td> <td class="row2" align="center" valign="middle"> diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index e119af7dcf..592143bdb2 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -431,7 +431,8 @@ if($total_topics) } else { - $topic_type = ""; } + $topic_type = ""; + } if( $topic_rowset[$i]['topic_vote'] ) { |