Blame Identity/Webenv/phpBB/3.0.4/viewforum.php

ef5584
ef5584
/**
ef5584
*
ef5584
* @package phpBB3
ef5584
* @version $Id: viewforum.php 9003 2008-10-11 18:23:12Z toonarmy $
ef5584
* @copyright (c) 2005 phpBB Group
ef5584
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
ef5584
*
ef5584
*/
ef5584
ef5584
/**
ef5584
* @ignore
ef5584
*/
ef5584
define('IN_PHPBB', true);
ef5584
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
ef5584
$phpEx = substr(strrchr(__FILE__, '.'), 1);
ef5584
include($phpbb_root_path . 'common.' . $phpEx);
ef5584
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
ef5584
ef5584
// Start session
ef5584
$user->session_begin();
ef5584
$auth->acl($user->data);
ef5584
ef5584
// Start initial var setup
ef5584
$forum_id	= request_var('f', 0);
ef5584
$mark_read	= request_var('mark', '');
ef5584
$start		= request_var('start', 0);
ef5584
ef5584
$default_sort_days	= (!empty($user->data['user_topic_show_days'])) ? $user->data['user_topic_show_days'] : 0;
ef5584
$default_sort_key	= (!empty($user->data['user_topic_sortby_type'])) ? $user->data['user_topic_sortby_type'] : 't';
ef5584
$default_sort_dir	= (!empty($user->data['user_topic_sortby_dir'])) ? $user->data['user_topic_sortby_dir'] : 'd';
ef5584
ef5584
$sort_days	= request_var('st', $default_sort_days);
ef5584
$sort_key	= request_var('sk', $default_sort_key);
ef5584
$sort_dir	= request_var('sd', $default_sort_dir);
ef5584
ef5584
// Check if the user has actually sent a forum ID with his/her request
ef5584
// If not give them a nice error page.
ef5584
if (!$forum_id)
ef5584
{
ef5584
	trigger_error('NO_FORUM');
ef5584
}
ef5584
ef5584
$sql_from = FORUMS_TABLE . ' f';
ef5584
$lastread_select = '';
ef5584
ef5584
// Grab appropriate forum data
ef5584
if ($config['load_db_lastread'] && $user->data['is_registered'])
ef5584
{
ef5584
	$sql_from .= ' LEFT JOIN ' . FORUMS_TRACK_TABLE . ' ft ON (ft.user_id = ' . $user->data['user_id'] . '
ef5584
		AND ft.forum_id = f.forum_id)';
ef5584
	$lastread_select .= ', ft.mark_time';
ef5584
}
ef5584
ef5584
if ($user->data['is_registered'])
ef5584
{
ef5584
	$sql_from .= ' LEFT JOIN ' . FORUMS_WATCH_TABLE . ' fw ON (fw.forum_id = f.forum_id AND fw.user_id = ' . $user->data['user_id'] . ')';
ef5584
	$lastread_select .= ', fw.notify_status';
ef5584
}
ef5584
ef5584
$sql = "SELECT f.* $lastread_select
ef5584
	FROM $sql_from
ef5584
	WHERE f.forum_id = $forum_id";
ef5584
$result = $db->sql_query($sql);
ef5584
$forum_data = $db->sql_fetchrow($result);
ef5584
$db->sql_freeresult($result);
ef5584
ef5584
if (!$forum_data)
ef5584
{
ef5584
	trigger_error('NO_FORUM');
ef5584
}
ef5584
ef5584
ef5584
// Configure style, language, etc.
ef5584
$user->setup('viewforum', $forum_data['forum_style']);
ef5584
ef5584
// Redirect to login upon emailed notification links
ef5584
if (isset($_GET['e']) && !$user->data['is_registered'])
ef5584
{
ef5584
	login_box('', $user->lang['LOGIN_NOTIFY_FORUM']);
ef5584
}
ef5584
ef5584
// Permissions check
ef5584
if (!$auth->acl_gets('f_list', 'f_read', $forum_id) || ($forum_data['forum_type'] == FORUM_LINK && $forum_data['forum_link'] && !$auth->acl_get('f_read', $forum_id)))
ef5584
{
ef5584
	if ($user->data['user_id'] != ANONYMOUS)
ef5584
	{
ef5584
		trigger_error('SORRY_AUTH_READ');
ef5584
	}
ef5584
ef5584
	login_box('', $user->lang['LOGIN_VIEWFORUM']);
ef5584
}
ef5584
ef5584
// Forum is passworded ... check whether access has been granted to this
ef5584
// user this session, if not show login box
ef5584
if ($forum_data['forum_password'])
ef5584
{
ef5584
	login_forum_box($forum_data);
ef5584
}
ef5584
ef5584
// Is this forum a link? ... User got here either because the
ef5584
// number of clicks is being tracked or they guessed the id
ef5584
if ($forum_data['forum_type'] == FORUM_LINK && $forum_data['forum_link'])
ef5584
{
ef5584
	// Does it have click tracking enabled?
ef5584
	if ($forum_data['forum_flags'] & FORUM_FLAG_LINK_TRACK)
ef5584
	{
ef5584
		$sql = 'UPDATE ' . FORUMS_TABLE . '
ef5584
			SET forum_posts = forum_posts + 1
ef5584
			WHERE forum_id = ' . $forum_id;
ef5584
		$db->sql_query($sql);
ef5584
	}
ef5584
ef5584
	// We redirect to the url. The third parameter indicates that external redirects are allowed.
ef5584
	redirect($forum_data['forum_link'], false, true);
ef5584
	return;
ef5584
}
ef5584
ef5584
// Build navigation links
ef5584
generate_forum_nav($forum_data);
ef5584
ef5584
// Forum Rules
ef5584
if ($auth->acl_get('f_read', $forum_id))
ef5584
{
ef5584
	generate_forum_rules($forum_data);
ef5584
}
ef5584
ef5584
// Do we have subforums?
ef5584
$active_forum_ary = $moderators = array();
ef5584
ef5584
if ($forum_data['left_id'] != $forum_data['right_id'] - 1)
ef5584
{
ef5584
	list($active_forum_ary, $moderators) = display_forums($forum_data, $config['load_moderators'], $config['load_moderators']);
ef5584
}
ef5584
else
ef5584
{
ef5584
	$template->assign_var('S_HAS_SUBFORUM', false);
ef5584
	get_moderators($moderators, $forum_id);
ef5584
}
ef5584
ef5584
// Dump out the page header and load viewforum template
ef5584
page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);
ef5584
ef5584
$template->set_filenames(array(
ef5584
	'body' => 'viewforum_body.html')
ef5584
);
ef5584
ef5584
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"), $forum_id);
ef5584
ef5584
$template->assign_vars(array(
ef5584
	'U_VIEW_FORUM'			=> append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&start=$start"),
ef5584
));
ef5584
ef5584
// Not postable forum or showing active topics?
ef5584
if (!($forum_data['forum_type'] == FORUM_POST || (($forum_data['forum_flags'] & FORUM_FLAG_ACTIVE_TOPICS) && $forum_data['forum_type'] == FORUM_CAT)))
ef5584
{
ef5584
	page_footer();
ef5584
}
ef5584
ef5584
// Ok, if someone has only list-access, we only display the forum list.
ef5584
// We also make this circumstance available to the template in case we want to display a notice. ;)
ef5584
if (!$auth->acl_get('f_read', $forum_id))
ef5584
{
ef5584
	$template->assign_vars(array(
ef5584
		'S_NO_READ_ACCESS'		=> true,
ef5584
		'S_AUTOLOGIN_ENABLED'	=> ($config['allow_autologin']) ? true : false,
ef5584
		'S_LOGIN_ACTION'		=> append_sid("{$phpbb_root_path}ucp.$phpEx", 'mode=login') . '&redirect=' . urlencode(str_replace('&', '&', build_url())),
ef5584
	));
ef5584
ef5584
	page_footer();
ef5584
}
ef5584
ef5584
// Handle marking posts
ef5584
if ($mark_read == 'topics')
ef5584
{
ef5584
	$token = request_var('hash', '');
ef5584
	if (check_link_hash($token, 'global'))
ef5584
	{
ef5584
		markread('topics', $forum_id);
ef5584
	}
ef5584
	$redirect_url = append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id);
ef5584
	meta_refresh(3, $redirect_url);
ef5584
ef5584
	trigger_error($user->lang['TOPICS_MARKED'] . '

' . sprintf($user->lang['RETURN_FORUM'], '', ''));
ef5584
}
ef5584
ef5584
// Is a forum specific topic count required?
ef5584
if ($forum_data['forum_topics_per_page'])
ef5584
{
ef5584
	$config['topics_per_page'] = $forum_data['forum_topics_per_page'];
ef5584
}
ef5584
ef5584
// Do the forum Prune thang - cron type job ...
ef5584
if ($forum_data['prune_next'] < time() && $forum_data['enable_prune'])
ef5584
{
ef5584
	$template->assign_var('RUN_CRON_TASK', 'cron');
ef5584
}
ef5584
ef5584
// Forum rules and subscription info
ef5584
$s_watching_forum = array(
ef5584
	'link'			=> '',
ef5584
	'title'			=> '',
ef5584
	'is_watching'	=> false,
ef5584
);
ef5584
ef5584
if (($config['email_enable'] || $config['jab_enable']) && $config['allow_forum_notify'] && $forum_data['forum_type'] == FORUM_POST && $auth->acl_get('f_subscribe', $forum_id))
ef5584
{
ef5584
	$notify_status = (isset($forum_data['notify_status'])) ? $forum_data['notify_status'] : NULL;
ef5584
	watch_topic_forum('forum', $s_watching_forum, $user->data['user_id'], $forum_id, 0, $notify_status);
ef5584
}
ef5584
ef5584
$s_forum_rules = '';
ef5584
gen_forum_auth_level('forum', $forum_id, $forum_data['forum_status']);
ef5584
ef5584
// Topic ordering options
ef5584
$limit_days = array(0 => $user->lang['ALL_TOPICS'], 1 => $user->lang['1_DAY'], 7 => $user->lang['7_DAYS'], 14 => $user->lang['2_WEEKS'], 30 => $user->lang['1_MONTH'], 90 => $user->lang['3_MONTHS'], 180 => $user->lang['6_MONTHS'], 365 => $user->lang['1_YEAR']);
ef5584
ef5584
$sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 'r' => $user->lang['REPLIES'], 's' => $user->lang['SUBJECT'], 'v' => $user->lang['VIEWS']);
ef5584
$sort_by_sql = array('a' => 't.topic_first_poster_name', 't' => 't.topic_last_post_time', 'r' => 't.topic_replies', 's' => 't.topic_title', 'v' => 't.topic_views');
ef5584
ef5584
$s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = '';
ef5584
gen_sort_selects($limit_days, $sort_by_text, $sort_days, $sort_key, $sort_dir, $s_limit_days, $s_sort_key, $s_sort_dir, $u_sort_param, $default_sort_days, $default_sort_key, $default_sort_dir);
ef5584
ef5584
// Limit topics to certain time frame, obtain correct topic count
ef5584
// global announcements must not be counted, normal announcements have to
ef5584
// be counted, as forum_topics(_real) includes them
ef5584
if ($sort_days)
ef5584
{
ef5584
	$min_post_time = time() - ($sort_days * 86400);
ef5584
ef5584
	$sql = 'SELECT COUNT(topic_id) AS num_topics
ef5584
		FROM ' . TOPICS_TABLE . "
ef5584
		WHERE forum_id = $forum_id
ef5584
			AND ((topic_type <> " . POST_GLOBAL . " AND topic_last_post_time >= $min_post_time)
ef5584
				OR topic_type = " . POST_ANNOUNCE . ")
ef5584
		" . (($auth->acl_get('m_approve', $forum_id)) ? '' : 'AND topic_approved = 1');
ef5584
	$result = $db->sql_query($sql);
ef5584
	$topics_count = (int) $db->sql_fetchfield('num_topics');
ef5584
	$db->sql_freeresult($result);
ef5584
ef5584
	if (isset($_POST['sort']))
ef5584
	{
ef5584
		$start = 0;
ef5584
	}
ef5584
	$sql_limit_time = "AND t.topic_last_post_time >= $min_post_time";
ef5584
ef5584
	// Make sure we have information about day selection ready
ef5584
	$template->assign_var('S_SORT_DAYS', true);
ef5584
}
ef5584
else
ef5584
{
ef5584
	$topics_count = ($auth->acl_get('m_approve', $forum_id)) ? $forum_data['forum_topics_real'] : $forum_data['forum_topics'];
ef5584
	$sql_limit_time = '';
ef5584
}
ef5584
ef5584
// Make sure $start is set to the last page if it exceeds the amount
ef5584
if ($start < 0 || $start > $topics_count)
ef5584
{
ef5584
	$start = ($start < 0) ? 0 : floor(($topics_count - 1) / $config['topics_per_page']) * $config['topics_per_page'];
ef5584
}
ef5584
ef5584
// Basic pagewide vars
ef5584
$post_alt = ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->lang['FORUM_LOCKED'] : $user->lang['POST_NEW_TOPIC'];
ef5584
ef5584
// Display active topics?
ef5584
$s_display_active = ($forum_data['forum_type'] == FORUM_CAT && ($forum_data['forum_flags'] & FORUM_FLAG_ACTIVE_TOPICS)) ? true : false;
ef5584
ef5584
$template->assign_vars(array(
ef5584
	'MODERATORS'	=> (!empty($moderators[$forum_id])) ? implode(', ', $moderators[$forum_id]) : '',
ef5584
ef5584
	'POST_IMG'					=> ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->img('button_topic_locked', $post_alt) : $user->img('button_topic_new', $post_alt),
ef5584
	'NEWEST_POST_IMG'			=> $user->img('icon_topic_newest', 'VIEW_NEWEST_POST'),
ef5584
	'LAST_POST_IMG'				=> $user->img('icon_topic_latest', 'VIEW_LATEST_POST'),
ef5584
	'FOLDER_IMG'				=> $user->img('topic_read', 'NO_NEW_POSTS'),
ef5584
	'FOLDER_NEW_IMG'			=> $user->img('topic_unread', 'NEW_POSTS'),
ef5584
	'FOLDER_HOT_IMG'			=> $user->img('topic_read_hot', 'NO_NEW_POSTS_HOT'),
ef5584
	'FOLDER_HOT_NEW_IMG'		=> $user->img('topic_unread_hot', 'NEW_POSTS_HOT'),
ef5584
	'FOLDER_LOCKED_IMG'			=> $user->img('topic_read_locked', 'NO_NEW_POSTS_LOCKED'),
ef5584
	'FOLDER_LOCKED_NEW_IMG'		=> $user->img('topic_unread_locked', 'NEW_POSTS_LOCKED'),
ef5584
	'FOLDER_STICKY_IMG'			=> $user->img('sticky_read', 'POST_STICKY'),
ef5584
	'FOLDER_STICKY_NEW_IMG'		=> $user->img('sticky_unread', 'POST_STICKY'),
ef5584
	'FOLDER_ANNOUNCE_IMG'		=> $user->img('announce_read', 'POST_ANNOUNCEMENT'),
ef5584
	'FOLDER_ANNOUNCE_NEW_IMG'	=> $user->img('announce_unread', 'POST_ANNOUNCEMENT'),
ef5584
	'FOLDER_MOVED_IMG'			=> $user->img('topic_moved', 'TOPIC_MOVED'),
ef5584
	'REPORTED_IMG'				=> $user->img('icon_topic_reported', 'TOPIC_REPORTED'),
ef5584
	'UNAPPROVED_IMG'			=> $user->img('icon_topic_unapproved', 'TOPIC_UNAPPROVED'),
ef5584
	'GOTO_PAGE_IMG'				=> $user->img('icon_post_target', 'GOTO_PAGE'),
ef5584
ef5584
	'L_NO_TOPICS' 			=> ($forum_data['forum_status'] == ITEM_LOCKED) ? $user->lang['POST_FORUM_LOCKED'] : $user->lang['NO_TOPICS'],
ef5584
ef5584
	'S_DISPLAY_POST_INFO'	=> ($forum_data['forum_type'] == FORUM_POST && ($auth->acl_get('f_post', $forum_id) || $user->data['user_id'] == ANONYMOUS)) ? true : false,
ef5584
ef5584
	'S_IS_POSTABLE'			=> ($forum_data['forum_type'] == FORUM_POST) ? true : false,
ef5584
	'S_USER_CAN_POST'		=> ($auth->acl_get('f_post', $forum_id)) ? true : false,
ef5584
	'S_DISPLAY_ACTIVE'		=> $s_display_active,
ef5584
	'S_SELECT_SORT_DIR'		=> $s_sort_dir,
ef5584
	'S_SELECT_SORT_KEY'		=> $s_sort_key,
ef5584
	'S_SELECT_SORT_DAYS'	=> $s_limit_days,
ef5584
	'S_TOPIC_ICONS'			=> ($s_display_active && sizeof($active_forum_ary)) ? max($active_forum_ary['enable_icons']) : (($forum_data['enable_icons']) ? true : false),
ef5584
	'S_WATCH_FORUM_LINK'	=> $s_watching_forum['link'],
ef5584
	'S_WATCH_FORUM_TITLE'	=> $s_watching_forum['title'],
ef5584
	'S_WATCHING_FORUM'		=> $s_watching_forum['is_watching'],
ef5584
	'S_FORUM_ACTION'		=> append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id&start=$start"),
ef5584
	'S_DISPLAY_SEARCHBOX'	=> ($auth->acl_get('u_search') && $auth->acl_get('f_search', $forum_id) && $config['load_search']) ? true : false,
ef5584
	'S_SEARCHBOX_ACTION'	=> append_sid("{$phpbb_root_path}search.$phpEx", 'fid[]=' . $forum_id),
ef5584
	'S_SINGLE_MODERATOR'	=> (!empty($moderators[$forum_id]) && sizeof($moderators[$forum_id]) > 1) ? false : true,
ef5584
	'S_IS_LOCKED'			=> ($forum_data['forum_status'] == ITEM_LOCKED) ? true : false,
ef5584
	'S_VIEWFORUM'			=> true,
ef5584
ef5584
	'U_MCP'				=> ($auth->acl_get('m_', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "f=$forum_id&i=main&mode=forum_view", true, $user->session_id) : '',
ef5584
	'U_POST_NEW_TOPIC'	=> ($auth->acl_get('f_post', $forum_id) || $user->data['user_id'] == ANONYMOUS) ? append_sid("{$phpbb_root_path}posting.$phpEx", 'mode=post&f=' . $forum_id) : '',
ef5584
	'U_VIEW_FORUM'		=> append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id" . ((strlen($u_sort_param)) ? "&$u_sort_param" : '') . "&start=$start"),
ef5584
	'U_MARK_TOPICS'		=> ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}viewforum.$phpEx", 'hash=' . generate_link_hash('global') . "&f=$forum_id&mark=topics") : '',
ef5584
));
ef5584
ef5584
// Grab icons
ef5584
$icons = $cache->obtain_icons();
ef5584
ef5584
// Grab all topic data
ef5584
$rowset = $announcement_list = $topic_list = $global_announce_list = array();
ef5584
ef5584
$sql_array = array(
ef5584
	'SELECT'	=> 't.*',
ef5584
	'FROM'		=> array(
ef5584
		TOPICS_TABLE		=> 't'
ef5584
	),
ef5584
	'LEFT_JOIN'	=> array(),
ef5584
);
ef5584
ef5584
$sql_approved = ($auth->acl_get('m_approve', $forum_id)) ? '' : 'AND t.topic_approved = 1';
ef5584
ef5584
if ($user->data['is_registered'])
ef5584
{
ef5584
	if ($config['load_db_track'])
ef5584
	{
ef5584
		$sql_array['LEFT_JOIN'][] = array('FROM' => array(TOPICS_POSTED_TABLE => 'tp'), 'ON' => 'tp.topic_id = t.topic_id AND tp.user_id = ' . $user->data['user_id']);
ef5584
		$sql_array['SELECT'] .= ', tp.topic_posted';
ef5584
	}
ef5584
ef5584
	if ($config['load_db_lastread'])
ef5584
	{
ef5584
		$sql_array['LEFT_JOIN'][] = array('FROM' => array(TOPICS_TRACK_TABLE => 'tt'), 'ON' => 'tt.topic_id = t.topic_id AND tt.user_id = ' . $user->data['user_id']);
ef5584
		$sql_array['SELECT'] .= ', tt.mark_time';
ef5584
ef5584
		if ($s_display_active && sizeof($active_forum_ary))
ef5584
		{
ef5584
			$sql_array['LEFT_JOIN'][] = array('FROM' => array(FORUMS_TRACK_TABLE => 'ft'), 'ON' => 'ft.forum_id = t.forum_id AND ft.user_id = ' . $user->data['user_id']);
ef5584
			$sql_array['SELECT'] .= ', ft.mark_time AS forum_mark_time';
ef5584
		}
ef5584
	}
ef5584
}
ef5584
ef5584
if ($forum_data['forum_type'] == FORUM_POST)
ef5584
{
ef5584
	// Obtain announcements ... removed sort ordering, sort by time in all cases
ef5584
	$sql = $db->sql_build_query('SELECT', array(
ef5584
		'SELECT'	=> $sql_array['SELECT'],
ef5584
		'FROM'		=> $sql_array['FROM'],
ef5584
		'LEFT_JOIN'	=> $sql_array['LEFT_JOIN'],
ef5584
ef5584
		'WHERE'		=> 't.forum_id IN (' . $forum_id . ', 0)
ef5584
			AND t.topic_type IN (' . POST_ANNOUNCE . ', ' . POST_GLOBAL . ')',
ef5584
ef5584
		'ORDER_BY'	=> 't.topic_time DESC',
ef5584
	));
ef5584
	$result = $db->sql_query($sql);
ef5584
ef5584
	while ($row = $db->sql_fetchrow($result))
ef5584
	{
ef5584
		$rowset[$row['topic_id']] = $row;
ef5584
		$announcement_list[] = $row['topic_id'];
ef5584
ef5584
		if ($row['topic_type'] == POST_GLOBAL)
ef5584
		{
ef5584
			$global_announce_list[$row['topic_id']] = true;
ef5584
		}
ef5584
		else
ef5584
		{
ef5584
			$topics_count--;
ef5584
		}
ef5584
	}
ef5584
	$db->sql_freeresult($result);
ef5584
}
ef5584
ef5584
// If the user is trying to reach late pages, start searching from the end
ef5584
$store_reverse = false;
ef5584
$sql_limit = $config['topics_per_page'];
ef5584
if ($start > $topics_count / 2)
ef5584
{
ef5584
	$store_reverse = true;
ef5584
ef5584
	if ($start + $config['topics_per_page'] > $topics_count)
ef5584
	{
ef5584
		$sql_limit = min($config['topics_per_page'], max(1, $topics_count - $start));
ef5584
	}
ef5584
ef5584
	// Select the sort order
ef5584
	$sql_sort_order = $sort_by_sql[$sort_key] . ' ' . (($sort_dir == 'd') ? 'ASC' : 'DESC');
ef5584
	$sql_start = max(0, $topics_count - $sql_limit - $start);
ef5584
}
ef5584
else
ef5584
{
ef5584
	// Select the sort order
ef5584
	$sql_sort_order = $sort_by_sql[$sort_key] . ' ' . (($sort_dir == 'd') ? 'DESC' : 'ASC');
ef5584
	$sql_start = $start;
ef5584
}
ef5584
ef5584
if ($forum_data['forum_type'] == FORUM_POST || !sizeof($active_forum_ary))
ef5584
{
ef5584
	$sql_where = 't.forum_id = ' . $forum_id;
ef5584
}
ef5584
else if (empty($active_forum_ary['exclude_forum_id']))
ef5584
{
ef5584
	$sql_where = $db->sql_in_set('t.forum_id', $active_forum_ary['forum_id']);
ef5584
}
ef5584
else
ef5584
{
ef5584
	$get_forum_ids = array_diff($active_forum_ary['forum_id'], $active_forum_ary['exclude_forum_id']);
ef5584
	$sql_where = (sizeof($get_forum_ids)) ? $db->sql_in_set('t.forum_id', $get_forum_ids) : 't.forum_id = ' . $forum_id;
ef5584
}
ef5584
ef5584
// Grab just the sorted topic ids
ef5584
$sql = 'SELECT t.topic_id
ef5584
	FROM ' . TOPICS_TABLE . " t
ef5584
	WHERE $sql_where
ef5584
		AND t.topic_type IN (" . POST_NORMAL . ', ' . POST_STICKY . ")
ef5584
		$sql_approved
ef5584
		$sql_limit_time
ef5584
	ORDER BY t.topic_type " . ((!$store_reverse) ? 'DESC' : 'ASC') . ', ' . $sql_sort_order;
ef5584
$result = $db->sql_query_limit($sql, $sql_limit, $sql_start);
ef5584
ef5584
while ($row = $db->sql_fetchrow($result))
ef5584
{
ef5584
	$topic_list[] = (int) $row['topic_id'];
ef5584
}
ef5584
$db->sql_freeresult($result);
ef5584
ef5584
// For storing shadow topics
ef5584
$shadow_topic_list = array();
ef5584
ef5584
if (sizeof($topic_list))
ef5584
{
ef5584
	// SQL array for obtaining topics/stickies
ef5584
	$sql_array = array(
ef5584
		'SELECT'		=> $sql_array['SELECT'],
ef5584
		'FROM'			=> $sql_array['FROM'],
ef5584
		'LEFT_JOIN'		=> $sql_array['LEFT_JOIN'],
ef5584
ef5584
		'WHERE'			=> $db->sql_in_set('t.topic_id', $topic_list),
ef5584
	);
ef5584
ef5584
	// If store_reverse, then first obtain topics, then stickies, else the other way around...
ef5584
	// Funnily enough you typically save one query if going from the last page to the middle (store_reverse) because
ef5584
	// the number of stickies are not known
ef5584
	$sql = $db->sql_build_query('SELECT', $sql_array);
ef5584
	$result = $db->sql_query($sql);
ef5584
ef5584
	while ($row = $db->sql_fetchrow($result))
ef5584
	{
ef5584
		if ($row['topic_status'] == ITEM_MOVED)
ef5584
		{
ef5584
			$shadow_topic_list[$row['topic_moved_id']] = $row['topic_id'];
ef5584
		}
ef5584
ef5584
		$rowset[$row['topic_id']] = $row;
ef5584
	}
ef5584
	$db->sql_freeresult($result);
ef5584
}
ef5584
ef5584
// If we have some shadow topics, update the rowset to reflect their topic information
ef5584
if (sizeof($shadow_topic_list))
ef5584
{
ef5584
	$sql = 'SELECT *
ef5584
		FROM ' . TOPICS_TABLE . '
ef5584
		WHERE ' . $db->sql_in_set('topic_id', array_keys($shadow_topic_list));
ef5584
	$result = $db->sql_query($sql);
ef5584
ef5584
	while ($row = $db->sql_fetchrow($result))
ef5584
	{
ef5584
		$orig_topic_id = $shadow_topic_list[$row['topic_id']];
ef5584
ef5584
		// If the shadow topic is already listed within the rowset (happens for active topics for example), then do not include it...
ef5584
		if (isset($rowset[$row['topic_id']]))
ef5584
		{
ef5584
			// We need to remove any trace regarding this topic. :)
ef5584
			unset($rowset[$orig_topic_id]);
ef5584
			unset($topic_list[array_search($orig_topic_id, $topic_list)]);
ef5584
			$topics_count--;
ef5584
ef5584
			continue;
ef5584
		}
ef5584
ef5584
		// Do not include those topics the user has no permission to access
ef5584
		if (!$auth->acl_get('f_read', $row['forum_id']))
ef5584
		{
ef5584
			// We need to remove any trace regarding this topic. :)
ef5584
			unset($rowset[$orig_topic_id]);
ef5584
			unset($topic_list[array_search($orig_topic_id, $topic_list)]);
ef5584
			$topics_count--;
ef5584
ef5584
			continue;
ef5584
		}
ef5584
ef5584
		// We want to retain some values
ef5584
		$row = array_merge($row, array(
ef5584
			'topic_moved_id'	=> $rowset[$orig_topic_id]['topic_moved_id'],
ef5584
			'topic_status'		=> $rowset[$orig_topic_id]['topic_status'],
ef5584
			'topic_type'		=> $rowset[$orig_topic_id]['topic_type'],
ef5584
		));
ef5584
ef5584
		// Shadow topics are never reported
ef5584
		$row['topic_reported'] = 0;
ef5584
ef5584
		$rowset[$orig_topic_id] = $row;
ef5584
	}
ef5584
	$db->sql_freeresult($result);
ef5584
}
ef5584
unset($shadow_topic_list);
ef5584
ef5584
// Ok, adjust topics count for active topics list
ef5584
if ($s_display_active)
ef5584
{
ef5584
	$topics_count = 1;
ef5584
}
ef5584
ef5584
$template->assign_vars(array(
ef5584
	'PAGINATION'	=> generate_pagination(append_sid("{$phpbb_root_path}viewforum.$phpEx", "f=$forum_id" . ((strlen($u_sort_param)) ? "&$u_sort_param" : '')), $topics_count, $config['topics_per_page'], $start),
ef5584
	'PAGE_NUMBER'	=> on_page($topics_count, $config['topics_per_page'], $start),
ef5584
	'TOTAL_TOPICS'	=> ($s_display_active) ? false : (($topics_count == 1) ? $user->lang['VIEW_FORUM_TOPIC'] : sprintf($user->lang['VIEW_FORUM_TOPICS'], $topics_count)))
ef5584
);
ef5584
ef5584
$topic_list = ($store_reverse) ? array_merge($announcement_list, array_reverse($topic_list)) : array_merge($announcement_list, $topic_list);
ef5584
$topic_tracking_info = $tracking_topics = array();
ef5584
ef5584
// Okay, lets dump out the page ...
ef5584
if (sizeof($topic_list))
ef5584
{
ef5584
	$mark_forum_read = true;
ef5584
	$mark_time_forum = 0;
ef5584
ef5584
	// Active topics?
ef5584
	if ($s_display_active && sizeof($active_forum_ary))
ef5584
	{
ef5584
		// Generate topic forum list...
ef5584
		$topic_forum_list = array();
ef5584
		foreach ($rowset as $t_id => $row)
ef5584
		{
ef5584
			$topic_forum_list[$row['forum_id']]['forum_mark_time'] = ($config['load_db_lastread'] && $user->data['is_registered'] && isset($row['forum_mark_time'])) ? $row['forum_mark_time'] : 0;
ef5584
			$topic_forum_list[$row['forum_id']]['topics'][] = $t_id;
ef5584
		}
ef5584
ef5584
		if ($config['load_db_lastread'] && $user->data['is_registered'])
ef5584
		{
ef5584
			foreach ($topic_forum_list as $f_id => $topic_row)
ef5584
			{
ef5584
				$topic_tracking_info += get_topic_tracking($f_id, $topic_row['topics'], $rowset, array($f_id => $topic_row['forum_mark_time']), false);
ef5584
			}
ef5584
		}
ef5584
		else if ($config['load_anon_lastread'] || $user->data['is_registered'])
ef5584
		{
ef5584
			foreach ($topic_forum_list as $f_id => $topic_row)
ef5584
			{
ef5584
				$topic_tracking_info += get_complete_topic_tracking($f_id, $topic_row['topics'], false);
ef5584
			}
ef5584
		}
ef5584
ef5584
		unset($topic_forum_list);
ef5584
	}
ef5584
	else
ef5584
	{
ef5584
		if ($config['load_db_lastread'] && $user->data['is_registered'])
ef5584
		{
ef5584
			$topic_tracking_info = get_topic_tracking($forum_id, $topic_list, $rowset, array($forum_id => $forum_data['mark_time']), $global_announce_list);
ef5584
			$mark_time_forum = (!empty($forum_data['mark_time'])) ? $forum_data['mark_time'] : $user->data['user_lastmark'];
ef5584
		}
ef5584
		else if ($config['load_anon_lastread'] || $user->data['is_registered'])
ef5584
		{
ef5584
			$topic_tracking_info = get_complete_topic_tracking($forum_id, $topic_list, $global_announce_list);
ef5584
ef5584
			if (!$user->data['is_registered'])
ef5584
			{
ef5584
				$user->data['user_lastmark'] = (isset($tracking_topics['l'])) ? (int) (base_convert($tracking_topics['l'], 36, 10) + $config['board_startdate']) : 0;
ef5584
			}
ef5584
			$mark_time_forum = (isset($tracking_topics['f'][$forum_id])) ? (int) (base_convert($tracking_topics['f'][$forum_id], 36, 10) + $config['board_startdate']) : $user->data['user_lastmark'];
ef5584
		}
ef5584
	}
ef5584
ef5584
	$s_type_switch = 0;
ef5584
	foreach ($topic_list as $topic_id)
ef5584
	{
ef5584
		$row = &$rowset[$topic_id];
ef5584
ef5584
		// This will allow the style designer to output a different header
ef5584
		// or even separate the list of announcements from sticky and normal topics
ef5584
		$s_type_switch_test = ($row['topic_type'] == POST_ANNOUNCE || $row['topic_type'] == POST_GLOBAL) ? 1 : 0;
ef5584
ef5584
		// Replies
ef5584
		$replies = ($auth->acl_get('m_approve', $forum_id)) ? $row['topic_replies_real'] : $row['topic_replies'];
ef5584
ef5584
		if ($row['topic_status'] == ITEM_MOVED)
ef5584
		{
ef5584
			$topic_id = $row['topic_moved_id'];
ef5584
			$unread_topic = false;
ef5584
		}
ef5584
		else
ef5584
		{
ef5584
			$unread_topic = (isset($topic_tracking_info[$topic_id]) && $row['topic_last_post_time'] > $topic_tracking_info[$topic_id]) ? true : false;
ef5584
		}
ef5584
ef5584
		// Get folder img, topic status/type related information
ef5584
		$folder_img = $folder_alt = $topic_type = '';
ef5584
		topic_status($row, $replies, $unread_topic, $folder_img, $folder_alt, $topic_type);
ef5584
ef5584
		// Generate all the URIs ...
ef5584
		$view_topic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . (($row['forum_id']) ? $row['forum_id'] : $forum_id) . '&t=' . $topic_id);
ef5584
ef5584
		$topic_unapproved = (!$row['topic_approved'] && $auth->acl_get('m_approve', $forum_id)) ? true : false;
ef5584
		$posts_unapproved = ($row['topic_approved'] && $row['topic_replies'] < $row['topic_replies_real'] && $auth->acl_get('m_approve', $forum_id)) ? true : false;
ef5584
		$u_mcp_queue = ($topic_unapproved || $posts_unapproved) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&mode=' . (($topic_unapproved) ? 'approve_details' : 'unapproved_posts') . "&t=$topic_id", true, $user->session_id) : '';
ef5584
ef5584
		// Send vars to template
ef5584
		$template->assign_block_vars('topicrow', array(
ef5584
			'FORUM_ID'					=> $forum_id,
ef5584
			'TOPIC_ID'					=> $topic_id,
ef5584
			'TOPIC_AUTHOR'				=> get_username_string('username', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),
ef5584
			'TOPIC_AUTHOR_COLOUR'		=> get_username_string('colour', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),
ef5584
			'TOPIC_AUTHOR_FULL'			=> get_username_string('full', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),
ef5584
			'FIRST_POST_TIME'			=> $user->format_date($row['topic_time']),
ef5584
			'LAST_POST_SUBJECT'			=> censor_text($row['topic_last_post_subject']),
ef5584
			'LAST_POST_TIME'			=> $user->format_date($row['topic_last_post_time']),
ef5584
			'LAST_VIEW_TIME'			=> $user->format_date($row['topic_last_view_time']),
ef5584
			'LAST_POST_AUTHOR'			=> get_username_string('username', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),
ef5584
			'LAST_POST_AUTHOR_COLOUR'	=> get_username_string('colour', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),
ef5584
			'LAST_POST_AUTHOR_FULL'		=> get_username_string('full', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),
ef5584
ef5584
			'PAGINATION'		=> topic_generate_pagination($replies, $view_topic_url),
ef5584
			'REPLIES'			=> $replies,
ef5584
			'VIEWS'				=> $row['topic_views'],
ef5584
			'TOPIC_TITLE'		=> censor_text($row['topic_title']),
ef5584
			'TOPIC_TYPE'		=> $topic_type,
ef5584
ef5584
			'TOPIC_FOLDER_IMG'		=> $user->img($folder_img, $folder_alt),
ef5584
			'TOPIC_FOLDER_IMG_SRC'	=> $user->img($folder_img, $folder_alt, false, '', 'src'),
ef5584
			'TOPIC_FOLDER_IMG_ALT'	=> $user->lang[$folder_alt],
ef5584
			'TOPIC_FOLDER_IMG_WIDTH'=> $user->img($folder_img, '', false, '', 'width'),
ef5584
			'TOPIC_FOLDER_IMG_HEIGHT'	=> $user->img($folder_img, '', false, '', 'height'),
ef5584
ef5584
			'TOPIC_ICON_IMG'		=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['img'] : '',
ef5584
			'TOPIC_ICON_IMG_WIDTH'	=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['width'] : '',
ef5584
			'TOPIC_ICON_IMG_HEIGHT'	=> (!empty($icons[$row['icon_id']])) ? $icons[$row['icon_id']]['height'] : '',
ef5584
			'ATTACH_ICON_IMG'		=> ($auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id) && $row['topic_attachment']) ? $user->img('icon_topic_attach', $user->lang['TOTAL_ATTACHMENTS']) : '',
ef5584
			'UNAPPROVED_IMG'		=> ($topic_unapproved || $posts_unapproved) ? $user->img('icon_topic_unapproved', ($topic_unapproved) ? 'TOPIC_UNAPPROVED' : 'POSTS_UNAPPROVED') : '',
ef5584
ef5584
			'S_TOPIC_TYPE'			=> $row['topic_type'],
ef5584
			'S_USER_POSTED'			=> (isset($row['topic_posted']) && $row['topic_posted']) ? true : false,
ef5584
			'S_UNREAD_TOPIC'		=> $unread_topic,
ef5584
			'S_TOPIC_REPORTED'		=> (!empty($row['topic_reported']) && $auth->acl_get('m_report', $forum_id)) ? true : false,
ef5584
			'S_TOPIC_UNAPPROVED'	=> $topic_unapproved,
ef5584
			'S_POSTS_UNAPPROVED'	=> $posts_unapproved,
ef5584
			'S_HAS_POLL'			=> ($row['poll_start']) ? true : false,
ef5584
			'S_POST_ANNOUNCE'		=> ($row['topic_type'] == POST_ANNOUNCE) ? true : false,
ef5584
			'S_POST_GLOBAL'			=> ($row['topic_type'] == POST_GLOBAL) ? true : false,
ef5584
			'S_POST_STICKY'			=> ($row['topic_type'] == POST_STICKY) ? true : false,
ef5584
			'S_TOPIC_LOCKED'		=> ($row['topic_status'] == ITEM_LOCKED) ? true : false,
ef5584
			'S_TOPIC_MOVED'			=> ($row['topic_status'] == ITEM_MOVED) ? true : false,
ef5584
ef5584
			'U_NEWEST_POST'			=> $view_topic_url . '&view=unread#unread',
ef5584
			'U_LAST_POST'			=> $view_topic_url . '&p=' . $row['topic_last_post_id'] . '#p' . $row['topic_last_post_id'],
ef5584
			'U_LAST_POST_AUTHOR'	=> get_username_string('profile', $row['topic_last_poster_id'], $row['topic_last_poster_name'], $row['topic_last_poster_colour']),
ef5584
			'U_TOPIC_AUTHOR'		=> get_username_string('profile', $row['topic_poster'], $row['topic_first_poster_name'], $row['topic_first_poster_colour']),
ef5584
			'U_VIEW_TOPIC'			=> $view_topic_url,
ef5584
			'U_MCP_REPORT'			=> append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&mode=reports&f=' . $forum_id . '&t=' . $topic_id, true, $user->session_id),
ef5584
			'U_MCP_QUEUE'			=> $u_mcp_queue,
ef5584
ef5584
			'S_TOPIC_TYPE_SWITCH'	=> ($s_type_switch == $s_type_switch_test) ? -1 : $s_type_switch_test)
ef5584
		);
ef5584
ef5584
		$s_type_switch = ($row['topic_type'] == POST_ANNOUNCE || $row['topic_type'] == POST_GLOBAL) ? 1 : 0;
ef5584
ef5584
		if ($unread_topic)
ef5584
		{
ef5584
			$mark_forum_read = false;
ef5584
		}
ef5584
ef5584
		unset($rowset[$topic_id]);
ef5584
	}
ef5584
}
ef5584
ef5584
// This is rather a fudge but it's the best I can think of without requiring information
ef5584
// on all topics (as we do in 2.0.x). It looks for unread or new topics, if it doesn't find
ef5584
// any it updates the forum last read cookie. This requires that the user visit the forum
ef5584
// after reading a topic
ef5584
if ($forum_data['forum_type'] == FORUM_POST && sizeof($topic_list) && $mark_forum_read)
ef5584
{
ef5584
	update_forum_tracking_info($forum_id, $forum_data['forum_last_post_time'], false, $mark_time_forum);
ef5584
}
ef5584
ef5584
page_footer();
ef5584
ef5584
?>