aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--phpBB/styles/subSilver/template/viewforum_body.html69
-rw-r--r--phpBB/viewforum.php58
2 files changed, 101 insertions, 26 deletions
diff --git a/phpBB/styles/subSilver/template/viewforum_body.html b/phpBB/styles/subSilver/template/viewforum_body.html
index 4c81b55ef2..63d896c1d5 100644
--- a/phpBB/styles/subSilver/template/viewforum_body.html
+++ b/phpBB/styles/subSilver/template/viewforum_body.html
@@ -14,6 +14,75 @@
<br clear="all" />
<!-- ENDIF -->
+ <!-- IF S_DISPLAY_ACTIVE -->
+ <table class="tablebg" width="100%" cellspacing="1">
+ <tr>
+ <td class="cat" colspan="<!-- IF S_TOPIC_ICONS -->7<!-- ELSE -->6<!-- ENDIF -->"><span class="nav">Active Topics</span></td>
+ </tr>
+
+ <tr>
+ <!-- IF S_TOPIC_ICONS -->
+ <th colspan="3">&nbsp;{L_TOPICS}&nbsp;</th>
+ <!-- ELSE -->
+ <th colspan="2">&nbsp;{L_TOPICS}&nbsp;</th>
+ <!-- ENDIF -->
+ <th>&nbsp;{L_AUTHOR}&nbsp;</th>
+ <th>&nbsp;{L_REPLIES}&nbsp;</th>
+ <th>&nbsp;{L_VIEWS}&nbsp;</th>
+ <th>&nbsp;{L_LAST_POST}&nbsp;</th>
+ </tr>
+
+ <!-- BEGIN topicrow -->
+
+ <tr>
+ <td class="row1" width="25" align="center">{topicrow.TOPIC_FOLDER_IMG}</td>
+ <!-- IF S_TOPIC_ICONS -->
+ <td class="row1" width="25" align="center">{topicrow.TOPIC_ICON_IMG}</td>
+ <!-- ENDIF -->
+ <td class="row1">
+ <!-- IF topicrow.S_TOPIC_UNAPPROVED -->
+ <a href="{topicrow.U_MCP_QUEUE}">{UNAPPROVED_IMG}</a>&nbsp;
+ <!-- ENDIF -->
+ <!-- IF topicrow.S_TOPIC_REPORTED -->
+ <a href="{topicrow.U_MCP_REPORT}">{REPORTED_IMG}</a>&nbsp;
+ <!-- ENDIF -->
+ <p class="topictitle">{topicrow.NEWEST_POST_IMG} {topicrow.ATTACH_ICON_IMG} <a href="{topicrow.U_VIEW_TOPIC}">{topicrow.TOPIC_TITLE}</a></p><p class="gensmall">{topicrow.GOTO_PAGE}</p></td>
+ <td class="row2" width="100" align="center"><p class="topicauthor">{topicrow.TOPIC_AUTHOR}</p></td>
+ <td class="row1" width="50" align="center"><p class="topicdetails">{topicrow.REPLIES}</p></td>
+ <td class="row2" width="50" align="center"><p class="topicdetails">{topicrow.VIEWS}</p></td>
+ <td class="row1" width="120" align="center">
+ <p class="topicdetails">{topicrow.LAST_POST_TIME}</p>
+ <p class="topicdetails">
+ <!-- IF forumrow.U_LAST_POSTER -->
+ <a href="{forumrow.U_LAST_POST_AUTHOR}">{topicrow.LAST_POST_AUTHOR}</a>
+ <!-- ELSE -->
+ {topicrow.LAST_POST_AUTHOR}
+ <!-- ENDIF -->
+ <a href="{forumrow.U_LAST_POST}">{topicrow.LAST_POST_IMG}</a>
+ </p>
+ </td>
+ </tr>
+
+ <!-- BEGINELSE -->
+
+ <tr>
+ <!-- IF S_TOPIC_ICONS -->
+ <td class="row1" colspan="7" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
+ <!-- ELSE -->
+ <td class="row1" colspan="6" height="30" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}</span></td>
+ <!-- ENDIF -->
+ </tr>
+ <!-- END topicrow -->
+
+ <tr align="center">
+ <td class="cat" colspan="<!-- IF S_TOPIC_ICONS -->8<!-- ELSE -->7<!-- ENDIF -->">&nbsp;</td>
+ </tr>
+ </table>
+
+ <br clear="all" />
+ <!-- ENDIF -->
+
+
<!-- IF S_HAS_SUBFORUM -->
<!-- INCLUDE viewforum_subforum.html -->
<!-- ENDIF -->
diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php
index 9d16557d28..2b1f6fc7ab 100644
--- a/phpBB/viewforum.php
+++ b/phpBB/viewforum.php
@@ -132,12 +132,12 @@ if (!$auth->acl_get('f_read', $forum_id))
generate_forum_nav($forum_data);
// Do we have subforums?
-$moderators = array();
+$active_forum_ary = $moderators = array();
if ($forum_data['left_id'] != $forum_data['right_id'] - 1)
{
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
- display_forums($forum_data);
+ $active_forum_ary = display_forums($forum_data);
}
else
{
@@ -146,7 +146,7 @@ else
get_moderators($moderators, $forum_id);
// Output forum listing if it is postable
-if ($forum_data['forum_type'] == FORUM_POST)
+if ($forum_data['forum_type'] == FORUM_POST || ($forum_data['forum_flags'] & 16))
{
// Handle marking posts
if ($mark_read == 'topics')
@@ -246,7 +246,7 @@ if ($forum_data['forum_type'] == FORUM_POST)
$template->assign_vars(array(
'PAGINATION' => generate_pagination("viewforum.$phpEx$SID&amp;f=$forum_id&amp;st=$sort_days&amp;sk=$sort_key&amp;sd=$sort_dir", $topics_count, $config['topics_per_page'], $start),
'PAGE_NUMBER' => on_page($topics_count, $config['topics_per_page'], $start),
- 'TOTAL_TOPICS' => ($topics_count == 1) ? $user->lang['VIEW_FORUM_TOPIC'] : sprintf($user->lang['VIEW_FORUM_TOPICS'], $topics_count),
+ 'TOTAL_TOPICS' => ($forum_data['forum_flags'] & 16) ? false : (($topics_count == 1) ? $user->lang['VIEW_FORUM_TOPIC'] : sprintf($user->lang['VIEW_FORUM_TOPICS'], $topics_count)),
'MODERATORS' => (!empty($moderators[$forum_id])) ? implode(', ', $moderators[$forum_id]) : '',
'POST_IMG' => ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->img('btn_locked', $post_alt) : $user->img('btn_post', $post_alt),
@@ -266,19 +266,21 @@ if ($forum_data['forum_type'] == FORUM_POST)
'L_NO_TOPICS' => ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->lang['POST_FORUM_LOCKED'] : $user->lang['NO_TOPICS'],
- 'S_IS_POSTABLE' => TRUE,
+ 'S_IS_POSTABLE' => ($forum_data['forum_type'] == FORUM_POST) ? true : false,
+ 'S_DISPLAY_ACTIVE' => ($forum_data['forum_type'] == FORUM_CAT && $forum_data['forum_flags'] & 16) ? true : false,
'S_SELECT_SORT_DIR' => $s_sort_dir,
'S_SELECT_SORT_KEY' => $s_sort_key,
'S_SELECT_SORT_DAYS' => $s_limit_days,
- 'S_TOPIC_ICONS' => ($forum_data['enable_icons']) ? true : false,
+ 'S_TOPIC_ICONS' => ($forum_data['forum_type'] == FORUM_CAT && $forum_data['forum_flags'] & 16) ? max($active_forum_ary['enable_icons']) : (($forum_data['enable_icons']) ? true : false),
'S_WATCH_FORUM' => $s_watching_forum,
'S_FORUM_ACTION' => "viewforum.$phpExx$SIDx&amp;f=$forum_id&amp;start=$start",
'S_DISPLAY_SEARCHBOX' => ($auth->acl_get('f_search', $forum_id)) ? true : false,
- 'S_SEARCHBOX_ACTION' => "search.$phpEx$SID&amp;f=$forum_id",
+ 'S_SEARCHBOX_ACTION' => "search.$phpEx$SID&amp;f[]=$forum_id",
'U_MCP' => ($auth->acl_gets('m_', $forum_id)) ? "mcp.$phpEx?sid=$user->session_id&amp;f=$forum_id&amp;mode=forum_view" : '',
- 'U_POST_NEW_TOPIC' => "posting.$phpEx$SID&amp;mode=post&amp;f=$forum_id",
- 'U_MARK_TOPICS' => "viewforum.$phpEx$SID&amp;f=$forum_id&amp;mark=topics")
+ 'U_POST_NEW_TOPIC' => "posting.$phpEx$SID&amp;mode=post&amp;f=$forum_id",
+ 'U_VIEW_FORUM' => "viewforum.$phpEx$SID&amp;f=$forum_id&amp;sk=$sort_key&amp;sd=$sort_dir&amp;st=$sort_days&amp;start=$start",
+ 'U_MARK_TOPICS' => "viewforum.$phpEx$SID&amp;f=$forum_id&amp;mark=topics")
);
// Grab icons
@@ -300,20 +302,23 @@ if ($forum_data['forum_type'] == FORUM_POST)
$sql_approved = ($auth->acl_get('m_approve', $forum_id)) ? '' : 'AND t.topic_approved = 1';
$sql_select = (($config['load_db_lastread'] || $config['load_db_track']) && $user->data['user_id'] != ANONYMOUS) ? ', tt.mark_type, tt.mark_time' : '';
- // Obtain announcements ... removed sort ordering, sort by time in all cases
- $sql = "SELECT t.* $sql_select
- FROM $sql_from
- WHERE t.forum_id IN ($forum_id, 0)
- AND t.topic_type IN (" . POST_ANNOUNCE . ', ' . POST_GLOBAL . ')
- ORDER BY t.topic_time DESC';
- $result = $db->sql_query($sql);
-
- while ($row = $db->sql_fetchrow($result))
+ if ($forum_data['forum_type'] == FORUM_POST)
{
- $rowset[$row['topic_id']] = $row;
- $announcement_list[] = $row['topic_id'];
+ // Obtain announcements ... removed sort ordering, sort by time in all cases
+ $sql = "SELECT t.* $sql_select
+ FROM $sql_from
+ WHERE t.forum_id IN ($forum_id, 0)
+ AND t.topic_type IN (" . POST_ANNOUNCE . ', ' . POST_GLOBAL . ')
+ ORDER BY t.topic_time DESC';
+ $result = $db->sql_query($sql);
+
+ while ($row = $db->sql_fetchrow($result))
+ {
+ $rowset[$row['topic_id']] = $row;
+ $announcement_list[] = $row['topic_id'];
+ }
+ $db->sql_freeresult($result);
}
- $db->sql_freeresult($result);
// If the user is trying to reach late pages, start searching from the end
$store_reverse = FALSE;
@@ -340,9 +345,10 @@ if ($forum_data['forum_type'] == FORUM_POST)
// Obtain other topics
// $sql_rownum = (SQL_LAYER != 'oracle') ? '' : ', ROWNUM rnum ';
+ $sql_where = ($forum_data['forum_type'] == FORUM_POST) ? "= $forum_id" : 'IN (' . implode(', ', $active_forum_ary['forum_id']) . ')';
$sql = "SELECT t.* $sql_select$sql_rownum
FROM $sql_from
- WHERE t.forum_id = $forum_id
+ WHERE t.forum_id $sql_where
AND t.topic_type NOT IN (" . POST_ANNOUNCE . ', ' . POST_GLOBAL . ")
$sql_approved
$sql_limit_time
@@ -485,7 +491,7 @@ if ($forum_data['forum_type'] == FORUM_POST)
$times = 1;
for($j = 0; $j < $replies + 1; $j += $config['posts_per_page'])
{
- $goto_page .= "<a href=\"viewtopic.$phpEx$SID&amp;f=$forum_id&amp;t=$topic_id&amp;start=$j\">$times</a>";
+ $goto_page .= "<a href=\"viewtopic.$phpEx$SID&amp;f=" . $row['forum_id'] . "&amp;t=$topic_id&amp;start=$j\">$times</a>";
if ($times == 1 && $total_pages > 4)
{
$goto_page .= ' ... ';
@@ -506,9 +512,9 @@ if ($forum_data['forum_type'] == FORUM_POST)
}
// Generate all the URIs ...
- $view_topic_url = "viewtopic.$phpEx$SID&amp;f=$forum_id&amp;t=$topic_id";
+ $view_topic_url = "viewtopic.$phpEx$SID&amp;f=" . $row['forum_id'] . "&amp;t=$topic_id";
- $last_post_img = "<a href=\"viewtopic.$phpEx$SID&amp;f=$forum_id&amp;p=" . $row['topic_last_post_id'] . '#' . $row['topic_last_post_id'] . '">' . $user->img('icon_post_latest', 'VIEW_LATEST_POST') . '</a>';
+ $last_post_img = "<a href=\"$view_topic_url&amp;p=" . $row['topic_last_post_id'] . '#' . $row['topic_last_post_id'] . '">' . $user->img('icon_post_latest', 'VIEW_LATEST_POST') . '</a>';
$topic_author = ($row['topic_poster'] != ANONYMOUS) ? "<a href=\"memberlist.$phpEx$SID&amp;mode=viewprofile&amp;u=" . $row['topic_poster'] . '">' : '';
$topic_author .= ($row['topic_poster'] != ANONYMOUS) ? $row['topic_first_poster_name'] : (($row['topic_first_poster_name'] != '') ? $row['topic_first_poster_name'] : $user->lang['GUEST']);
@@ -581,7 +587,7 @@ if ($forum_data['forum_type'] == FORUM_POST)
// on all topics (as we do in 2.0.x). It looks for unread or new topics, if it doesn't find
// any it updates the forum last read cookie. This requires that the user visit the forum
// after reading a topic
- if ($user->data['user_id'] != ANONYMOUS && $mark_forum_read)
+ if ($forum_data['forum_type'] == FORUM_POST && $user->data['user_id'] != ANONYMOUS && $mark_forum_read)
{
markread('mark', $forum_id);
}