Blame Identity/Models/Html/phpBB/3.0.4/viewtopic.php

d6e8d8
d6e8d8
/**
d6e8d8
*
d6e8d8
* @package phpBB3
d6e8d8
* @version $Id: viewtopic.php 9138 2008-11-30 16:53:36Z acydburn $
d6e8d8
* @copyright (c) 2005 phpBB Group
d6e8d8
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
d6e8d8
*
d6e8d8
*/
d6e8d8
d6e8d8
/**
d6e8d8
* @ignore
d6e8d8
*/
d6e8d8
define('IN_PHPBB', true);
d6e8d8
$phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './';
d6e8d8
$phpEx = substr(strrchr(__FILE__, '.'), 1);
d6e8d8
include($phpbb_root_path . 'common.' . $phpEx);
d6e8d8
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
d6e8d8
include($phpbb_root_path . 'includes/bbcode.' . $phpEx);
d6e8d8
d6e8d8
// Start session management
d6e8d8
$user->session_begin();
d6e8d8
$auth->acl($user->data);
d6e8d8
d6e8d8
// Initial var setup
d6e8d8
$forum_id	= request_var('f', 0);
d6e8d8
$topic_id	= request_var('t', 0);
d6e8d8
$post_id	= request_var('p', 0);
d6e8d8
$voted_id	= request_var('vote_id', array('' => 0));
d6e8d8
d6e8d8
$start		= request_var('start', 0);
d6e8d8
$view		= request_var('view', '');
d6e8d8
d6e8d8
$default_sort_days	= (!empty($user->data['user_post_show_days'])) ? $user->data['user_post_show_days'] : 0;
d6e8d8
$default_sort_key	= (!empty($user->data['user_post_sortby_type'])) ? $user->data['user_post_sortby_type'] : 't';
d6e8d8
$default_sort_dir	= (!empty($user->data['user_post_sortby_dir'])) ? $user->data['user_post_sortby_dir'] : 'a';
d6e8d8
d6e8d8
$sort_days	= request_var('st', $default_sort_days);
d6e8d8
$sort_key	= request_var('sk', $default_sort_key);
d6e8d8
$sort_dir	= request_var('sd', $default_sort_dir);
d6e8d8
d6e8d8
$update		= request_var('update', false);
d6e8d8
d6e8d8
/**
d6e8d8
* @todo normalize?
d6e8d8
*/
d6e8d8
$hilit_words	= request_var('hilit', '', true);
d6e8d8
d6e8d8
// Do we have a topic or post id?
d6e8d8
if (!$topic_id && !$post_id)
d6e8d8
{
d6e8d8
	trigger_error('NO_TOPIC');
d6e8d8
}
d6e8d8
d6e8d8
// Find topic id if user requested a newer or older topic
d6e8d8
if ($view && !$post_id)
d6e8d8
{
d6e8d8
	if (!$forum_id)
d6e8d8
	{
d6e8d8
		$sql = 'SELECT forum_id
d6e8d8
			FROM ' . TOPICS_TABLE . "
d6e8d8
			WHERE topic_id = $topic_id";
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
		$forum_id = (int) $db->sql_fetchfield('forum_id');
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		if (!$forum_id)
d6e8d8
		{
d6e8d8
			trigger_error('NO_TOPIC');
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	if ($view == 'unread')
d6e8d8
	{
d6e8d8
		// Get topic tracking info
d6e8d8
		$topic_tracking_info = get_complete_topic_tracking($forum_id, $topic_id);
d6e8d8
d6e8d8
		$topic_last_read = (isset($topic_tracking_info[$topic_id])) ? $topic_tracking_info[$topic_id] : 0;
d6e8d8
d6e8d8
		$sql = 'SELECT post_id, topic_id, forum_id
d6e8d8
			FROM ' . POSTS_TABLE . "
d6e8d8
			WHERE topic_id = $topic_id
d6e8d8
				" . (($auth->acl_get('m_approve', $forum_id)) ? '' : 'AND post_approved = 1') . "
d6e8d8
				AND post_time > $topic_last_read
d6e8d8
			ORDER BY post_time ASC";
d6e8d8
		$result = $db->sql_query_limit($sql, 1);
d6e8d8
		$row = $db->sql_fetchrow($result);
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		if (!$row)
d6e8d8
		{
d6e8d8
			$sql = 'SELECT topic_last_post_id as post_id, topic_id, forum_id
d6e8d8
				FROM ' . TOPICS_TABLE . '
d6e8d8
				WHERE topic_id = ' . $topic_id;
d6e8d8
			$result = $db->sql_query($sql);
d6e8d8
			$row = $db->sql_fetchrow($result);
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
		}
d6e8d8
d6e8d8
		if (!$row)
d6e8d8
		{
d6e8d8
			// Setup user environment so we can process lang string
d6e8d8
			$user->setup('viewtopic');
d6e8d8
d6e8d8
			trigger_error('NO_TOPIC');
d6e8d8
		}
d6e8d8
d6e8d8
		$post_id = $row['post_id'];
d6e8d8
		$topic_id = $row['topic_id'];
d6e8d8
	}
d6e8d8
	else if ($view == 'next' || $view == 'previous')
d6e8d8
	{
d6e8d8
		$sql_condition = ($view == 'next') ? '>' : '<';
d6e8d8
		$sql_ordering = ($view == 'next') ? 'ASC' : 'DESC';
d6e8d8
d6e8d8
		$sql = 'SELECT forum_id, topic_last_post_time
d6e8d8
			FROM ' . TOPICS_TABLE . '
d6e8d8
			WHERE topic_id = ' . $topic_id;
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
		$row = $db->sql_fetchrow($result);
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		if (!$row)
d6e8d8
		{
d6e8d8
			$user->setup('viewtopic');
d6e8d8
			// OK, the topic doesn't exist. This error message is not helpful, but technically correct.
d6e8d8
			trigger_error(($view == 'next') ? 'NO_NEWER_TOPICS' : 'NO_OLDER_TOPICS');
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$sql = 'SELECT topic_id, forum_id
d6e8d8
				FROM ' . TOPICS_TABLE . '
d6e8d8
				WHERE forum_id = ' . $row['forum_id'] . "
d6e8d8
					AND topic_moved_id = 0
d6e8d8
					AND topic_last_post_time $sql_condition {$row['topic_last_post_time']}
d6e8d8
					" . (($auth->acl_get('m_approve', $row['forum_id'])) ? '' : 'AND topic_approved = 1') . "
d6e8d8
				ORDER BY topic_last_post_time $sql_ordering";
d6e8d8
			$result = $db->sql_query_limit($sql, 1);
d6e8d8
			$row = $db->sql_fetchrow($result);
d6e8d8
			$db->sql_freeresult($result);
d6e8d8
d6e8d8
			if (!$row)
d6e8d8
			{
d6e8d8
				$user->setup('viewtopic');
d6e8d8
				trigger_error(($view == 'next') ? 'NO_NEWER_TOPICS' : 'NO_OLDER_TOPICS');
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$topic_id = $row['topic_id'];
d6e8d8
d6e8d8
				// Check for global announcement correctness?
d6e8d8
				if (!$row['forum_id'] && !$forum_id)
d6e8d8
				{
d6e8d8
					trigger_error('NO_TOPIC');
d6e8d8
				}
d6e8d8
				else if ($row['forum_id'])
d6e8d8
				{
d6e8d8
					$forum_id = $row['forum_id'];
d6e8d8
				}
d6e8d8
			}
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	// Check for global announcement correctness?
d6e8d8
	if ((!isset($row) || !$row['forum_id']) && !$forum_id)
d6e8d8
	{
d6e8d8
		trigger_error('NO_TOPIC');
d6e8d8
	}
d6e8d8
	else if (isset($row) && $row['forum_id'])
d6e8d8
	{
d6e8d8
		$forum_id = $row['forum_id'];
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// This rather complex gaggle of code handles querying for topics but
d6e8d8
// also allows for direct linking to a post (and the calculation of which
d6e8d8
// page the post is on and the correct display of viewtopic)
d6e8d8
$sql_array = array(
d6e8d8
	'SELECT'	=> 't.*, f.*',
d6e8d8
d6e8d8
	'FROM'		=> array(FORUMS_TABLE => 'f'),
d6e8d8
);
d6e8d8
d6e8d8
// The FROM-Order is quite important here, else t.* columns can not be correctly bound.
d6e8d8
if ($post_id)
d6e8d8
{
d6e8d8
	$sql_array['FROM'][POSTS_TABLE] = 'p';
d6e8d8
}
d6e8d8
d6e8d8
// Topics table need to be the last in the chain
d6e8d8
$sql_array['FROM'][TOPICS_TABLE] = 't';
d6e8d8
d6e8d8
if ($user->data['is_registered'])
d6e8d8
{
d6e8d8
	$sql_array['SELECT'] .= ', tw.notify_status';
d6e8d8
	$sql_array['LEFT_JOIN'] = array();
d6e8d8
d6e8d8
	$sql_array['LEFT_JOIN'][] = array(
d6e8d8
		'FROM'	=> array(TOPICS_WATCH_TABLE => 'tw'),
d6e8d8
		'ON'	=> 'tw.user_id = ' . $user->data['user_id'] . ' AND t.topic_id = tw.topic_id'
d6e8d8
	);
d6e8d8
d6e8d8
	if ($config['allow_bookmarks'])
d6e8d8
	{
d6e8d8
		$sql_array['SELECT'] .= ', bm.topic_id as bookmarked';
d6e8d8
		$sql_array['LEFT_JOIN'][] = array(
d6e8d8
			'FROM'	=> array(BOOKMARKS_TABLE => 'bm'),
d6e8d8
			'ON'	=> 'bm.user_id = ' . $user->data['user_id'] . ' AND t.topic_id = bm.topic_id'
d6e8d8
		);
d6e8d8
	}
d6e8d8
d6e8d8
	if ($config['load_db_lastread'])
d6e8d8
	{
d6e8d8
		$sql_array['SELECT'] .= ', tt.mark_time, ft.mark_time as forum_mark_time';
d6e8d8
d6e8d8
		$sql_array['LEFT_JOIN'][] = array(
d6e8d8
			'FROM'	=> array(TOPICS_TRACK_TABLE => 'tt'),
d6e8d8
			'ON'	=> 'tt.user_id = ' . $user->data['user_id'] . ' AND t.topic_id = tt.topic_id'
d6e8d8
		);
d6e8d8
d6e8d8
		$sql_array['LEFT_JOIN'][] = array(
d6e8d8
			'FROM'	=> array(FORUMS_TRACK_TABLE => 'ft'),
d6e8d8
			'ON'	=> 'ft.user_id = ' . $user->data['user_id'] . ' AND t.forum_id = ft.forum_id'
d6e8d8
		);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
if (!$post_id)
d6e8d8
{
d6e8d8
	$sql_array['WHERE'] = "t.topic_id = $topic_id";
d6e8d8
}
d6e8d8
else
d6e8d8
{
d6e8d8
	$sql_array['WHERE'] = "p.post_id = $post_id AND t.topic_id = p.topic_id" . ((!$auth->acl_get('m_approve', $forum_id)) ? ' AND p.post_approved = 1' : '');
d6e8d8
}
d6e8d8
d6e8d8
$sql_array['WHERE'] .= ' AND (f.forum_id = t.forum_id';
d6e8d8
d6e8d8
if (!$forum_id)
d6e8d8
{
d6e8d8
	// If it is a global announcement make sure to set the forum id to a postable forum
d6e8d8
	$sql_array['WHERE'] .= ' OR (t.topic_type = ' . POST_GLOBAL . '
d6e8d8
		AND f.forum_type = ' . FORUM_POST . ')';
d6e8d8
}
d6e8d8
else
d6e8d8
{
d6e8d8
	$sql_array['WHERE'] .= ' OR (t.topic_type = ' . POST_GLOBAL . "
d6e8d8
		AND f.forum_id = $forum_id)";
d6e8d8
}
d6e8d8
d6e8d8
$sql_array['WHERE'] .= ')';
d6e8d8
d6e8d8
// Join to forum table on topic forum_id unless topic forum_id is zero
d6e8d8
// whereupon we join on the forum_id passed as a parameter ... this
d6e8d8
// is done so navigation, forum name, etc. remain consistent with where
d6e8d8
// user clicked to view a global topic
d6e8d8
$sql = $db->sql_build_query('SELECT', $sql_array);
d6e8d8
$result = $db->sql_query($sql);
d6e8d8
$topic_data = $db->sql_fetchrow($result);
d6e8d8
$db->sql_freeresult($result);
d6e8d8
d6e8d8
if (!$topic_data)
d6e8d8
{
d6e8d8
	// If post_id was submitted, we try at least to display the topic as a last resort...
d6e8d8
	if ($post_id && $forum_id && $topic_id)
d6e8d8
	{
d6e8d8
		redirect(append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id"));
d6e8d8
	}
d6e8d8
d6e8d8
	trigger_error('NO_TOPIC');
d6e8d8
}
d6e8d8
d6e8d8
// This is for determining where we are (page)
d6e8d8
if ($post_id)
d6e8d8
{
d6e8d8
	if ($post_id == $topic_data['topic_first_post_id'] || $post_id == $topic_data['topic_last_post_id'])
d6e8d8
	{
d6e8d8
		$check_sort = ($post_id == $topic_data['topic_first_post_id']) ? 'd' : 'a';
d6e8d8
d6e8d8
		if ($sort_dir == $check_sort)
d6e8d8
		{
d6e8d8
			$topic_data['prev_posts'] = ($auth->acl_get('m_approve', $forum_id)) ? $topic_data['topic_replies_real'] : $topic_data['topic_replies'];
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$topic_data['prev_posts'] = 0;
d6e8d8
		}
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$sql = 'SELECT COUNT(p1.post_id) AS prev_posts
d6e8d8
			FROM ' . POSTS_TABLE . ' p1, ' . POSTS_TABLE . " p2
d6e8d8
			WHERE p1.topic_id = {$topic_data['topic_id']}
d6e8d8
				AND p2.post_id = {$post_id}
d6e8d8
				" . ((!$auth->acl_get('m_approve', $forum_id)) ? 'AND p1.post_approved = 1' : '') . '
d6e8d8
				AND ' . (($sort_dir == 'd') ? 'p1.post_time >= p2.post_time' : 'p1.post_time <= p2.post_time');
d6e8d8
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
		$row = $db->sql_fetchrow($result);
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		$topic_data['prev_posts'] = $row['prev_posts'] - 1;
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
$forum_id = (int) $topic_data['forum_id'];
d6e8d8
$topic_id = (int) $topic_data['topic_id'];
d6e8d8
d6e8d8
//
d6e8d8
$topic_replies = ($auth->acl_get('m_approve', $forum_id)) ? $topic_data['topic_replies_real'] : $topic_data['topic_replies'];
d6e8d8
d6e8d8
// Check sticky/announcement time limit
d6e8d8
if (($topic_data['topic_type'] == POST_STICKY || $topic_data['topic_type'] == POST_ANNOUNCE) && $topic_data['topic_time_limit'] && ($topic_data['topic_time'] + $topic_data['topic_time_limit']) < time())
d6e8d8
{
d6e8d8
	$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
		SET topic_type = ' . POST_NORMAL . ', topic_time_limit = 0
d6e8d8
		WHERE topic_id = ' . $topic_id;
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	$topic_data['topic_type'] = POST_NORMAL;
d6e8d8
	$topic_data['topic_time_limit'] = 0;
d6e8d8
}
d6e8d8
d6e8d8
// Setup look and feel
d6e8d8
$user->setup('viewtopic', $topic_data['forum_style']);
d6e8d8
d6e8d8
if (!$topic_data['topic_approved'] && !$auth->acl_get('m_approve', $forum_id))
d6e8d8
{
d6e8d8
	trigger_error('NO_TOPIC');
d6e8d8
}
d6e8d8
d6e8d8
// Start auth check
d6e8d8
if (!$auth->acl_get('f_read', $forum_id))
d6e8d8
{
d6e8d8
	if ($user->data['user_id'] != ANONYMOUS)
d6e8d8
	{
d6e8d8
		trigger_error('SORRY_AUTH_READ');
d6e8d8
	}
d6e8d8
d6e8d8
	login_box('', $user->lang['LOGIN_VIEWFORUM']);
d6e8d8
}
d6e8d8
d6e8d8
// Forum is passworded ... check whether access has been granted to this
d6e8d8
// user this session, if not show login box
d6e8d8
if ($topic_data['forum_password'])
d6e8d8
{
d6e8d8
	login_forum_box($topic_data);
d6e8d8
}
d6e8d8
d6e8d8
// Redirect to login or to the correct post upon emailed notification links
d6e8d8
if (isset($_GET['e']))
d6e8d8
{
d6e8d8
	$jump_to = request_var('e', 0);
d6e8d8
d6e8d8
	$redirect_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id");
d6e8d8
d6e8d8
	if ($user->data['user_id'] == ANONYMOUS)
d6e8d8
	{
d6e8d8
		login_box($redirect_url . "&p=$post_id&e=$jump_to", $user->lang['LOGIN_NOTIFY_TOPIC']);
d6e8d8
	}
d6e8d8
d6e8d8
	if ($jump_to > 0)
d6e8d8
	{
d6e8d8
		// We direct the already logged in user to the correct post...
d6e8d8
		redirect($redirect_url . ((!$post_id) ? "&p=$jump_to" : "&p=$post_id") . "#p$jump_to");
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// What is start equal to?
d6e8d8
if ($post_id)
d6e8d8
{
d6e8d8
	$start = floor(($topic_data['prev_posts']) / $config['posts_per_page']) * $config['posts_per_page'];
d6e8d8
}
d6e8d8
d6e8d8
// Get topic tracking info
d6e8d8
if (!isset($topic_tracking_info))
d6e8d8
{
d6e8d8
	$topic_tracking_info = array();
d6e8d8
d6e8d8
	// Get topic tracking info
d6e8d8
	if ($config['load_db_lastread'] && $user->data['is_registered'])
d6e8d8
	{
d6e8d8
		$tmp_topic_data = array($topic_id => $topic_data);
d6e8d8
		$topic_tracking_info = get_topic_tracking($forum_id, $topic_id, $tmp_topic_data, array($forum_id => $topic_data['forum_mark_time']));
d6e8d8
		unset($tmp_topic_data);
d6e8d8
	}
d6e8d8
	else if ($config['load_anon_lastread'] || $user->data['is_registered'])
d6e8d8
	{
d6e8d8
		$topic_tracking_info = get_complete_topic_tracking($forum_id, $topic_id);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// Post ordering options
d6e8d8
$limit_days = array(0 => $user->lang['ALL_POSTS'], 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']);
d6e8d8
d6e8d8
$sort_by_text = array('a' => $user->lang['AUTHOR'], 't' => $user->lang['POST_TIME'], 's' => $user->lang['SUBJECT']);
d6e8d8
$sort_by_sql = array('a' => 'u.username_clean', 't' => 'p.post_time', 's' => 'p.post_subject');
d6e8d8
d6e8d8
$s_limit_days = $s_sort_key = $s_sort_dir = $u_sort_param = '';
d6e8d8
d6e8d8
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);
d6e8d8
d6e8d8
// Obtain correct post count and ordering SQL if user has
d6e8d8
// requested anything different
d6e8d8
if ($sort_days)
d6e8d8
{
d6e8d8
	$min_post_time = time() - ($sort_days * 86400);
d6e8d8
d6e8d8
	$sql = 'SELECT COUNT(post_id) AS num_posts
d6e8d8
		FROM ' . POSTS_TABLE . "
d6e8d8
		WHERE topic_id = $topic_id
d6e8d8
			AND post_time >= $min_post_time
d6e8d8
		" . (($auth->acl_get('m_approve', $forum_id)) ? '' : 'AND post_approved = 1');
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
	$total_posts = (int) $db->sql_fetchfield('num_posts');
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$limit_posts_time = "AND p.post_time >= $min_post_time ";
d6e8d8
d6e8d8
	if (isset($_POST['sort']))
d6e8d8
	{
d6e8d8
		$start = 0;
d6e8d8
	}
d6e8d8
}
d6e8d8
else
d6e8d8
{
d6e8d8
	$total_posts = $topic_replies + 1;
d6e8d8
	$limit_posts_time = '';
d6e8d8
}
d6e8d8
d6e8d8
// Was a highlight request part of the URI?
d6e8d8
$highlight_match = $highlight = '';
d6e8d8
if ($hilit_words)
d6e8d8
{
d6e8d8
	foreach (explode(' ', trim($hilit_words)) as $word)
d6e8d8
	{
d6e8d8
		if (trim($word))
d6e8d8
		{
d6e8d8
			$word = str_replace('\*', '\w+?', preg_quote($word, '#'));
d6e8d8
			$word = preg_replace('#(^|\s)\\\\w\*\?(\s|$)#', '$1\w+?$2', $word);
d6e8d8
			$highlight_match .= (($highlight_match != '') ? '|' : '') . $word;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$highlight = urlencode($hilit_words);
d6e8d8
}
d6e8d8
d6e8d8
// Make sure $start is set to the last page if it exceeds the amount
d6e8d8
if ($start < 0 || $start >= $total_posts)
d6e8d8
{
d6e8d8
	$start = ($start < 0) ? 0 : floor(($total_posts - 1) / $config['posts_per_page']) * $config['posts_per_page'];
d6e8d8
}
d6e8d8
d6e8d8
// General Viewtopic URL for return links
d6e8d8
$viewtopic_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&start=$start" . ((strlen($u_sort_param)) ? "&$u_sort_param" : '') . (($highlight_match) ? "&hilit=$highlight" : ''));
d6e8d8
d6e8d8
// Are we watching this topic?
d6e8d8
$s_watching_topic = array(
d6e8d8
	'link'			=> '',
d6e8d8
	'title'			=> '',
d6e8d8
	'is_watching'	=> false,
d6e8d8
);
d6e8d8
d6e8d8
if (($config['email_enable'] || $config['jab_enable']) && $config['allow_topic_notify'] && $user->data['is_registered'])
d6e8d8
{
d6e8d8
	watch_topic_forum('topic', $s_watching_topic, $user->data['user_id'], $forum_id, $topic_id, $topic_data['notify_status'], $start);
d6e8d8
d6e8d8
	// Reset forum notification if forum notify is set
d6e8d8
	if ($config['allow_forum_notify'] && $auth->acl_get('f_subscribe', $forum_id))
d6e8d8
	{
d6e8d8
		$s_watching_forum = $s_watching_topic;
d6e8d8
		watch_topic_forum('forum', $s_watching_forum, $user->data['user_id'], $forum_id, 0);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// Bookmarks
d6e8d8
if ($config['allow_bookmarks'] && $user->data['is_registered'] && request_var('bookmark', 0))
d6e8d8
{
d6e8d8
	if (check_link_hash(request_var('hash', ''), "topic_$topic_id"))
d6e8d8
	{
d6e8d8
		if (!$topic_data['bookmarked'])
d6e8d8
		{
d6e8d8
			$sql = 'INSERT INTO ' . BOOKMARKS_TABLE . ' ' . $db->sql_build_array('INSERT', array(
d6e8d8
				'user_id'	=> $user->data['user_id'],
d6e8d8
				'topic_id'	=> $topic_id,
d6e8d8
			));
d6e8d8
			$db->sql_query($sql);
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$sql = 'DELETE FROM ' . BOOKMARKS_TABLE . "
d6e8d8
				WHERE user_id = {$user->data['user_id']}
d6e8d8
					AND topic_id = $topic_id";
d6e8d8
			$db->sql_query($sql);
d6e8d8
		}
d6e8d8
		$message = (($topic_data['bookmarked']) ? $user->lang['BOOKMARK_REMOVED'] : $user->lang['BOOKMARK_ADDED']) . '

' . sprintf($user->lang['RETURN_TOPIC'], '', '');
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$message = $user->lang['BOOKMARK_ERR'] . '

' . sprintf($user->lang['RETURN_TOPIC'], '', '');
d6e8d8
	}
d6e8d8
	meta_refresh(3, $viewtopic_url);
d6e8d8
d6e8d8
	trigger_error($message);
d6e8d8
}
d6e8d8
d6e8d8
// Grab ranks
d6e8d8
$ranks = $cache->obtain_ranks();
d6e8d8
d6e8d8
// Grab icons
d6e8d8
$icons = $cache->obtain_icons();
d6e8d8
d6e8d8
// Grab extensions
d6e8d8
$extensions = array();
d6e8d8
if ($topic_data['topic_attachment'])
d6e8d8
{
d6e8d8
	$extensions = $cache->obtain_attach_extensions($forum_id);
d6e8d8
}
d6e8d8
d6e8d8
// Forum rules listing
d6e8d8
$s_forum_rules = '';
d6e8d8
gen_forum_auth_level('topic', $forum_id, $topic_data['forum_status']);
d6e8d8
d6e8d8
// Quick mod tools
d6e8d8
$allow_change_type = ($auth->acl_get('m_', $forum_id) || ($user->data['is_registered'] && $user->data['user_id'] == $topic_data['topic_poster'])) ? true : false;
d6e8d8
d6e8d8
$topic_mod = '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_lock', $forum_id) || ($auth->acl_get('f_user_lock', $forum_id) && $user->data['is_registered'] && $user->data['user_id'] == $topic_data['topic_poster'] && $topic_data['topic_status'] == ITEM_UNLOCKED)) ? (($topic_data['topic_status'] == ITEM_UNLOCKED) ? '<option value="lock">' . $user->lang['LOCK_TOPIC'] . '</option>' : '<option value="unlock">' . $user->lang['UNLOCK_TOPIC'] . '</option>') : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_delete', $forum_id)) ? '<option value="delete_topic">' . $user->lang['DELETE_TOPIC'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_move', $forum_id) && $topic_data['topic_status'] != ITEM_MOVED) ? '<option value="move">' . $user->lang['MOVE_TOPIC'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_split', $forum_id)) ? '<option value="split">' . $user->lang['SPLIT_TOPIC'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_merge', $forum_id)) ? '<option value="merge">' . $user->lang['MERGE_POSTS'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_merge', $forum_id)) ? '<option value="merge_topic">' . $user->lang['MERGE_TOPIC'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_move', $forum_id)) ? '<option value="fork">' . $user->lang['FORK_TOPIC'] . '</option>' : '';
d6e8d8
$topic_mod .= ($allow_change_type && $auth->acl_gets('f_sticky', 'f_announce', $forum_id) && $topic_data['topic_type'] != POST_NORMAL) ? '<option value="make_normal">' . $user->lang['MAKE_NORMAL'] . '</option>' : '';
d6e8d8
$topic_mod .= ($allow_change_type && $auth->acl_get('f_sticky', $forum_id) && $topic_data['topic_type'] != POST_STICKY) ? '<option value="make_sticky">' . $user->lang['MAKE_STICKY'] . '</option>' : '';
d6e8d8
$topic_mod .= ($allow_change_type && $auth->acl_get('f_announce', $forum_id) && $topic_data['topic_type'] != POST_ANNOUNCE) ? '<option value="make_announce">' . $user->lang['MAKE_ANNOUNCE'] . '</option>' : '';
d6e8d8
$topic_mod .= ($allow_change_type && $auth->acl_get('f_announce', $forum_id) && $topic_data['topic_type'] != POST_GLOBAL) ? '<option value="make_global">' . $user->lang['MAKE_GLOBAL'] . '</option>' : '';
d6e8d8
$topic_mod .= ($auth->acl_get('m_', $forum_id)) ? '<option value="topic_logs">' . $user->lang['VIEW_TOPIC_LOGS'] . '</option>' : '';
d6e8d8
d6e8d8
// If we've got a hightlight set pass it on to pagination.
d6e8d8
$pagination = generate_pagination(append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id" . ((strlen($u_sort_param)) ? "&$u_sort_param" : '') . (($highlight_match) ? "&hilit=$highlight" : '')), $total_posts, $config['posts_per_page'], $start);
d6e8d8
d6e8d8
// Navigation links
d6e8d8
generate_forum_nav($topic_data);
d6e8d8
d6e8d8
// Forum Rules
d6e8d8
generate_forum_rules($topic_data);
d6e8d8
d6e8d8
// Moderators
d6e8d8
$forum_moderators = array();
d6e8d8
get_moderators($forum_moderators, $forum_id);
d6e8d8
d6e8d8
// This is only used for print view so ...
d6e8d8
$server_path = (!$view) ? $phpbb_root_path : generate_board_url() . '/';
d6e8d8
d6e8d8
// Replace naughty words in title
d6e8d8
$topic_data['topic_title'] = censor_text($topic_data['topic_title']);
d6e8d8
d6e8d8
// Send vars to template
d6e8d8
$template->assign_vars(array(
d6e8d8
	'FORUM_ID' 		=> $forum_id,
d6e8d8
	'FORUM_NAME' 	=> $topic_data['forum_name'],
d6e8d8
	'FORUM_DESC'	=> generate_text_for_display($topic_data['forum_desc'], $topic_data['forum_desc_uid'], $topic_data['forum_desc_bitfield'], $topic_data['forum_desc_options']),
d6e8d8
	'TOPIC_ID' 		=> $topic_id,
d6e8d8
	'TOPIC_TITLE' 	=> $topic_data['topic_title'],
d6e8d8
	'TOPIC_POSTER'	=> $topic_data['topic_poster'],
d6e8d8
d6e8d8
	'TOPIC_AUTHOR_FULL'		=> get_username_string('full', $topic_data['topic_poster'], $topic_data['topic_first_poster_name'], $topic_data['topic_first_poster_colour']),
d6e8d8
	'TOPIC_AUTHOR_COLOUR'	=> get_username_string('colour', $topic_data['topic_poster'], $topic_data['topic_first_poster_name'], $topic_data['topic_first_poster_colour']),
d6e8d8
	'TOPIC_AUTHOR'			=> get_username_string('username', $topic_data['topic_poster'], $topic_data['topic_first_poster_name'], $topic_data['topic_first_poster_colour']),
d6e8d8
d6e8d8
	'PAGINATION' 	=> $pagination,
d6e8d8
	'PAGE_NUMBER' 	=> on_page($total_posts, $config['posts_per_page'], $start),
d6e8d8
	'TOTAL_POSTS'	=> ($total_posts == 1) ? $user->lang['VIEW_TOPIC_POST'] : sprintf($user->lang['VIEW_TOPIC_POSTS'], $total_posts),
d6e8d8
	'U_MCP' 		=> ($auth->acl_get('m_', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=topic_view&f=$forum_id&t=$topic_id&start=$start" . ((strlen($u_sort_param)) ? "&$u_sort_param" : ''), true, $user->session_id) : '',
d6e8d8
	'MODERATORS'	=> (isset($forum_moderators[$forum_id]) && sizeof($forum_moderators[$forum_id])) ? implode(', ', $forum_moderators[$forum_id]) : '',
d6e8d8
d6e8d8
	'POST_IMG' 			=> ($topic_data['forum_status'] == ITEM_LOCKED) ? $user->img('button_topic_locked', 'FORUM_LOCKED') : $user->img('button_topic_new', 'POST_NEW_TOPIC'),
d6e8d8
	'QUOTE_IMG' 		=> $user->img('icon_post_quote', 'REPLY_WITH_QUOTE'),
d6e8d8
	'REPLY_IMG'			=> ($topic_data['forum_status'] == ITEM_LOCKED || $topic_data['topic_status'] == ITEM_LOCKED) ? $user->img('button_topic_locked', 'TOPIC_LOCKED') : $user->img('button_topic_reply', 'REPLY_TO_TOPIC'),
d6e8d8
	'EDIT_IMG' 			=> $user->img('icon_post_edit', 'EDIT_POST'),
d6e8d8
	'DELETE_IMG' 		=> $user->img('icon_post_delete', 'DELETE_POST'),
d6e8d8
	'INFO_IMG' 			=> $user->img('icon_post_info', 'VIEW_INFO'),
d6e8d8
	'PROFILE_IMG'		=> $user->img('icon_user_profile', 'READ_PROFILE'),
d6e8d8
	'SEARCH_IMG' 		=> $user->img('icon_user_search', 'SEARCH_USER_POSTS'),
d6e8d8
	'PM_IMG' 			=> $user->img('icon_contact_pm', 'SEND_PRIVATE_MESSAGE'),
d6e8d8
	'EMAIL_IMG' 		=> $user->img('icon_contact_email', 'SEND_EMAIL'),
d6e8d8
	'WWW_IMG' 			=> $user->img('icon_contact_www', 'VISIT_WEBSITE'),
d6e8d8
	'ICQ_IMG' 			=> $user->img('icon_contact_icq', 'ICQ'),
d6e8d8
	'AIM_IMG' 			=> $user->img('icon_contact_aim', 'AIM'),
d6e8d8
	'MSN_IMG' 			=> $user->img('icon_contact_msnm', 'MSNM'),
d6e8d8
	'YIM_IMG' 			=> $user->img('icon_contact_yahoo', 'YIM'),
d6e8d8
	'JABBER_IMG'		=> $user->img('icon_contact_jabber', 'JABBER') ,
d6e8d8
	'REPORT_IMG'		=> $user->img('icon_post_report', 'REPORT_POST'),
d6e8d8
	'REPORTED_IMG'		=> $user->img('icon_topic_reported', 'POST_REPORTED'),
d6e8d8
	'UNAPPROVED_IMG'	=> $user->img('icon_topic_unapproved', 'POST_UNAPPROVED'),
d6e8d8
	'WARN_IMG'			=> $user->img('icon_user_warn', 'WARN_USER'),
d6e8d8
d6e8d8
	'S_IS_LOCKED'			=>($topic_data['topic_status'] == ITEM_UNLOCKED) ? false : true,
d6e8d8
	'S_SELECT_SORT_DIR' 	=> $s_sort_dir,
d6e8d8
	'S_SELECT_SORT_KEY' 	=> $s_sort_key,
d6e8d8
	'S_SELECT_SORT_DAYS' 	=> $s_limit_days,
d6e8d8
	'S_SINGLE_MODERATOR'	=> (!empty($forum_moderators[$forum_id]) && sizeof($forum_moderators[$forum_id]) > 1) ? false : true,
d6e8d8
	'S_TOPIC_ACTION' 		=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&start=$start"),
d6e8d8
	'S_TOPIC_MOD' 			=> ($topic_mod != '') ? '<select name="action" id="quick-mod-select">' . $topic_mod . '</select>' : '',
d6e8d8
	'S_MOD_ACTION' 			=> append_sid("{$phpbb_root_path}mcp.$phpEx", "f=$forum_id&t=$topic_id&quickmod=1&redirect=" . urlencode(str_replace('&', '&', $viewtopic_url)), true, $user->session_id),
d6e8d8
d6e8d8
	'S_VIEWTOPIC'			=> true,
d6e8d8
	'S_DISPLAY_SEARCHBOX'	=> ($auth->acl_get('u_search') && $auth->acl_get('f_search', $forum_id) && $config['load_search']) ? true : false,
d6e8d8
	'S_SEARCHBOX_ACTION'	=> append_sid("{$phpbb_root_path}search.$phpEx", 't=' . $topic_id),
d6e8d8
d6e8d8
	'S_DISPLAY_POST_INFO'	=> ($topic_data['forum_type'] == FORUM_POST && ($auth->acl_get('f_post', $forum_id) || $user->data['user_id'] == ANONYMOUS)) ? true : false,
d6e8d8
	'S_DISPLAY_REPLY_INFO'	=> ($topic_data['forum_type'] == FORUM_POST && ($auth->acl_get('f_reply', $forum_id) || $user->data['user_id'] == ANONYMOUS)) ? true : false,
d6e8d8
d6e8d8
	'U_TOPIC'				=> "{$server_path}viewtopic.$phpEx?f=$forum_id&t=$topic_id",
d6e8d8
	'U_FORUM'				=> $server_path,
d6e8d8
	'U_VIEW_TOPIC' 			=> $viewtopic_url,
d6e8d8
	'U_VIEW_FORUM' 			=> append_sid("{$phpbb_root_path}viewforum.$phpEx", 'f=' . $forum_id),
d6e8d8
	'U_VIEW_OLDER_TOPIC'	=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&view=previous"),
d6e8d8
	'U_VIEW_NEWER_TOPIC'	=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&view=next"),
d6e8d8
	'U_PRINT_TOPIC'			=> ($auth->acl_get('f_print', $forum_id)) ? $viewtopic_url . '&view=print' : '',
d6e8d8
	'U_EMAIL_TOPIC'			=> ($auth->acl_get('f_email', $forum_id) && $config['email_enable']) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=email&t=$topic_id") : '',
d6e8d8
d6e8d8
	'U_WATCH_TOPIC' 		=> $s_watching_topic['link'],
d6e8d8
	'L_WATCH_TOPIC' 		=> $s_watching_topic['title'],
d6e8d8
	'S_WATCHING_TOPIC'		=> $s_watching_topic['is_watching'],
d6e8d8
d6e8d8
	'U_BOOKMARK_TOPIC'		=> ($user->data['is_registered'] && $config['allow_bookmarks']) ? $viewtopic_url . '&bookmark=1&hash=' . generate_link_hash("topic_$topic_id") : '',
d6e8d8
	'L_BOOKMARK_TOPIC'		=> ($user->data['is_registered'] && $config['allow_bookmarks'] && $topic_data['bookmarked']) ? $user->lang['BOOKMARK_TOPIC_REMOVE'] : $user->lang['BOOKMARK_TOPIC'],
d6e8d8
d6e8d8
	'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") : '',
d6e8d8
	'U_POST_REPLY_TOPIC' 	=> ($auth->acl_get('f_reply', $forum_id) || $user->data['user_id'] == ANONYMOUS) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=reply&f=$forum_id&t=$topic_id") : '',
d6e8d8
	'U_BUMP_TOPIC'			=> (bump_topic_allowed($forum_id, $topic_data['topic_bumped'], $topic_data['topic_last_post_time'], $topic_data['topic_poster'], $topic_data['topic_last_poster_id'])) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=bump&f=$forum_id&t=$topic_id&hash=" . generate_link_hash("topic_$topic_id")) : '')
d6e8d8
);
d6e8d8
d6e8d8
// Does this topic contain a poll?
d6e8d8
if (!empty($topic_data['poll_start']))
d6e8d8
{
d6e8d8
	$sql = 'SELECT o.*, p.bbcode_bitfield, p.bbcode_uid
d6e8d8
		FROM ' . POLL_OPTIONS_TABLE . ' o, ' . POSTS_TABLE . " p
d6e8d8
		WHERE o.topic_id = $topic_id
d6e8d8
			AND p.post_id = {$topic_data['topic_first_post_id']}
d6e8d8
			AND p.topic_id = o.topic_id
d6e8d8
		ORDER BY o.poll_option_id";
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$poll_info = array();
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$poll_info[] = $row;
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
d6e8d8
	$cur_voted_id = array();
d6e8d8
	if ($user->data['is_registered'])
d6e8d8
	{
d6e8d8
		$sql = 'SELECT poll_option_id
d6e8d8
			FROM ' . POLL_VOTES_TABLE . '
d6e8d8
			WHERE topic_id = ' . $topic_id . '
d6e8d8
				AND vote_user_id = ' . $user->data['user_id'];
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$cur_voted_id[] = $row['poll_option_id'];
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		// Cookie based guest tracking ... I don't like this but hum ho
d6e8d8
		// it's oft requested. This relies on "nice" users who don't feel
d6e8d8
		// the need to delete cookies to mess with results.
d6e8d8
		if (isset($_COOKIE[$config['cookie_name'] . '_poll_' . $topic_id]))
d6e8d8
		{
d6e8d8
			$cur_voted_id = explode(',', $_COOKIE[$config['cookie_name'] . '_poll_' . $topic_id]);
d6e8d8
			$cur_voted_id = array_map('intval', $cur_voted_id);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$s_can_vote = (((!sizeof($cur_voted_id) && $auth->acl_get('f_vote', $forum_id)) ||
d6e8d8
		($auth->acl_get('f_votechg', $forum_id) && $topic_data['poll_vote_change'])) &&
d6e8d8
		(($topic_data['poll_length'] != 0 && $topic_data['poll_start'] + $topic_data['poll_length'] > time()) || $topic_data['poll_length'] == 0) &&
d6e8d8
		$topic_data['topic_status'] != ITEM_LOCKED &&
d6e8d8
		$topic_data['forum_status'] != ITEM_LOCKED) ? true : false;
d6e8d8
	$s_display_results = (!$s_can_vote || ($s_can_vote && sizeof($cur_voted_id)) || $view == 'viewpoll') ? true : false;
d6e8d8
d6e8d8
	if ($update && $s_can_vote)
d6e8d8
	{
d6e8d8
d6e8d8
		if (!sizeof($voted_id) || sizeof($voted_id) > $topic_data['poll_max_options'] || in_array(VOTE_CONVERTED, $cur_voted_id))
d6e8d8
		{
d6e8d8
			$redirect_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&start=$start");
d6e8d8
d6e8d8
			meta_refresh(5, $redirect_url);
d6e8d8
			if (!sizeof($voted_id))
d6e8d8
			{
d6e8d8
				$message = 'NO_VOTE_OPTION';
d6e8d8
			}
d6e8d8
			else if (sizeof($voted_id) > $topic_data['poll_max_options'])
d6e8d8
			{
d6e8d8
				$message = 'TOO_MANY_VOTE_OPTIONS';
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$message = 'VOTE_CONVERTED';
d6e8d8
			}
d6e8d8
d6e8d8
			$message = $user->lang[$message] . '

' . sprintf($user->lang['RETURN_TOPIC'], '', '');
d6e8d8
			trigger_error($message);
d6e8d8
		}
d6e8d8
d6e8d8
		foreach ($voted_id as $option)
d6e8d8
		{
d6e8d8
			if (in_array($option, $cur_voted_id))
d6e8d8
			{
d6e8d8
				continue;
d6e8d8
			}
d6e8d8
d6e8d8
			$sql = 'UPDATE ' . POLL_OPTIONS_TABLE . '
d6e8d8
				SET poll_option_total = poll_option_total + 1
d6e8d8
				WHERE poll_option_id = ' . (int) $option . '
d6e8d8
					AND topic_id = ' . (int) $topic_id;
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			if ($user->data['is_registered'])
d6e8d8
			{
d6e8d8
				$sql_ary = array(
d6e8d8
					'topic_id'			=> (int) $topic_id,
d6e8d8
					'poll_option_id'	=> (int) $option,
d6e8d8
					'vote_user_id'		=> (int) $user->data['user_id'],
d6e8d8
					'vote_user_ip'		=> (string) $user->ip,
d6e8d8
				);
d6e8d8
d6e8d8
				$sql = 'INSERT INTO ' . POLL_VOTES_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		}
d6e8d8
d6e8d8
		foreach ($cur_voted_id as $option)
d6e8d8
		{
d6e8d8
			if (!in_array($option, $voted_id))
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . POLL_OPTIONS_TABLE . '
d6e8d8
					SET poll_option_total = poll_option_total - 1
d6e8d8
					WHERE poll_option_id = ' . (int) $option . '
d6e8d8
						AND topic_id = ' . (int) $topic_id;
d6e8d8
				$db->sql_query($sql);
d6e8d8
d6e8d8
				if ($user->data['is_registered'])
d6e8d8
				{
d6e8d8
					$sql = 'DELETE FROM ' . POLL_VOTES_TABLE . '
d6e8d8
						WHERE topic_id = ' . (int) $topic_id . '
d6e8d8
							AND poll_option_id = ' . (int) $option . '
d6e8d8
							AND vote_user_id = ' . (int) $user->data['user_id'];
d6e8d8
					$db->sql_query($sql);
d6e8d8
				}
d6e8d8
			}
d6e8d8
		}
d6e8d8
d6e8d8
		if ($user->data['user_id'] == ANONYMOUS && !$user->data['is_bot'])
d6e8d8
		{
d6e8d8
			$user->set_cookie('poll_' . $topic_id, implode(',', $voted_id), time() + 31536000);
d6e8d8
		}
d6e8d8
d6e8d8
		$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
			SET poll_last_vote = ' . time() . "
d6e8d8
			WHERE topic_id = $topic_id";
d6e8d8
		//, topic_last_post_time = ' . time() . " -- for bumping topics with new votes, ignore for now
d6e8d8
		$db->sql_query($sql);
d6e8d8
d6e8d8
		$redirect_url = append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&start=$start");
d6e8d8
d6e8d8
		meta_refresh(5, $redirect_url);
d6e8d8
		trigger_error($user->lang['VOTE_SUBMITTED'] . '

' . sprintf($user->lang['RETURN_TOPIC'], '', ''));
d6e8d8
	}
d6e8d8
d6e8d8
	$poll_total = 0;
d6e8d8
	foreach ($poll_info as $poll_option)
d6e8d8
	{
d6e8d8
		$poll_total += $poll_option['poll_option_total'];
d6e8d8
	}
d6e8d8
d6e8d8
	if ($poll_info[0]['bbcode_bitfield'])
d6e8d8
	{
d6e8d8
		$poll_bbcode = new bbcode();
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$poll_bbcode = false;
d6e8d8
	}
d6e8d8
d6e8d8
	for ($i = 0, $size = sizeof($poll_info); $i < $size; $i++)
d6e8d8
	{
d6e8d8
		$poll_info[$i]['poll_option_text'] = censor_text($poll_info[$i]['poll_option_text']);
d6e8d8
d6e8d8
		if ($poll_bbcode !== false)
d6e8d8
		{
d6e8d8
			$poll_bbcode->bbcode_second_pass($poll_info[$i]['poll_option_text'], $poll_info[$i]['bbcode_uid'], $poll_option['bbcode_bitfield']);
d6e8d8
		}
d6e8d8
d6e8d8
		$poll_info[$i]['poll_option_text'] = bbcode_nl2br($poll_info[$i]['poll_option_text']);
d6e8d8
		$poll_info[$i]['poll_option_text'] = smiley_text($poll_info[$i]['poll_option_text']);
d6e8d8
	}
d6e8d8
d6e8d8
	$topic_data['poll_title'] = censor_text($topic_data['poll_title']);
d6e8d8
d6e8d8
	if ($poll_bbcode !== false)
d6e8d8
	{
d6e8d8
		$poll_bbcode->bbcode_second_pass($topic_data['poll_title'], $poll_info[0]['bbcode_uid'], $poll_info[0]['bbcode_bitfield']);
d6e8d8
	}
d6e8d8
d6e8d8
	$topic_data['poll_title'] = bbcode_nl2br($topic_data['poll_title']);
d6e8d8
	$topic_data['poll_title'] = smiley_text($topic_data['poll_title']);
d6e8d8
d6e8d8
	unset($poll_bbcode);
d6e8d8
d6e8d8
	foreach ($poll_info as $poll_option)
d6e8d8
	{
d6e8d8
		$option_pct = ($poll_total > 0) ? $poll_option['poll_option_total'] / $poll_total : 0;
d6e8d8
		$option_pct_txt = sprintf("%.1d%%", round($option_pct * 100));
d6e8d8
d6e8d8
		$template->assign_block_vars('poll_option', array(
d6e8d8
			'POLL_OPTION_ID' 		=> $poll_option['poll_option_id'],
d6e8d8
			'POLL_OPTION_CAPTION' 	=> $poll_option['poll_option_text'],
d6e8d8
			'POLL_OPTION_RESULT' 	=> $poll_option['poll_option_total'],
d6e8d8
			'POLL_OPTION_PERCENT' 	=> $option_pct_txt,
d6e8d8
			'POLL_OPTION_PCT'		=> round($option_pct * 100),
d6e8d8
			'POLL_OPTION_IMG' 		=> $user->img('poll_center', $option_pct_txt, round($option_pct * 250)),
d6e8d8
			'POLL_OPTION_VOTED'		=> (in_array($poll_option['poll_option_id'], $cur_voted_id)) ? true : false)
d6e8d8
		);
d6e8d8
	}
d6e8d8
d6e8d8
	$poll_end = $topic_data['poll_length'] + $topic_data['poll_start'];
d6e8d8
d6e8d8
	$template->assign_vars(array(
d6e8d8
		'POLL_QUESTION'		=> $topic_data['poll_title'],
d6e8d8
		'TOTAL_VOTES' 		=> $poll_total,
d6e8d8
		'POLL_LEFT_CAP_IMG'	=> $user->img('poll_left'),
d6e8d8
		'POLL_RIGHT_CAP_IMG'=> $user->img('poll_right'),
d6e8d8
d6e8d8
		'L_MAX_VOTES'		=> ($topic_data['poll_max_options'] == 1) ? $user->lang['MAX_OPTION_SELECT'] : sprintf($user->lang['MAX_OPTIONS_SELECT'], $topic_data['poll_max_options']),
d6e8d8
		'L_POLL_LENGTH'		=> ($topic_data['poll_length']) ? sprintf($user->lang[($poll_end > time()) ? 'POLL_RUN_TILL' : 'POLL_ENDED_AT'], $user->format_date($poll_end)) : '',
d6e8d8
d6e8d8
		'S_HAS_POLL'		=> true,
d6e8d8
		'S_CAN_VOTE'		=> $s_can_vote,
d6e8d8
		'S_DISPLAY_RESULTS'	=> $s_display_results,
d6e8d8
		'S_IS_MULTI_CHOICE'	=> ($topic_data['poll_max_options'] > 1) ? true : false,
d6e8d8
		'S_POLL_ACTION'		=> $viewtopic_url,
d6e8d8
d6e8d8
		'U_VIEW_RESULTS'	=> $viewtopic_url . '&view=viewpoll')
d6e8d8
	);
d6e8d8
d6e8d8
	unset($poll_end, $poll_info, $voted_id);
d6e8d8
}
d6e8d8
d6e8d8
// If the user is trying to reach the second half of the topic, fetch it starting from the end
d6e8d8
$store_reverse = false;
d6e8d8
$sql_limit = $config['posts_per_page'];
d6e8d8
d6e8d8
if ($start > $total_posts / 2)
d6e8d8
{
d6e8d8
	$store_reverse = true;
d6e8d8
d6e8d8
	if ($start + $config['posts_per_page'] > $total_posts)
d6e8d8
	{
d6e8d8
		$sql_limit = min($config['posts_per_page'], max(1, $total_posts - $start));
d6e8d8
	}
d6e8d8
d6e8d8
	// Select the sort order
d6e8d8
	$sql_sort_order = $sort_by_sql[$sort_key] . ' ' . (($sort_dir == 'd') ? 'ASC' : 'DESC');
d6e8d8
	$sql_start = max(0, $total_posts - $sql_limit - $start);
d6e8d8
}
d6e8d8
else
d6e8d8
{
d6e8d8
	// Select the sort order
d6e8d8
	$sql_sort_order = $sort_by_sql[$sort_key] . ' ' . (($sort_dir == 'd') ? 'DESC' : 'ASC');
d6e8d8
	$sql_start = $start;
d6e8d8
}
d6e8d8
d6e8d8
// Container for user details, only process once
d6e8d8
$post_list = $user_cache = $id_cache = $attachments = $attach_list = $rowset = $update_count = $post_edit_list = array();
d6e8d8
$has_attachments = $display_notice = false;
d6e8d8
$bbcode_bitfield = '';
d6e8d8
$i = $i_total = 0;
d6e8d8
d6e8d8
// Go ahead and pull all data for this topic
d6e8d8
$sql = 'SELECT p.post_id
d6e8d8
	FROM ' . POSTS_TABLE . ' p' . (($sort_by_sql[$sort_key][0] == 'u') ? ', ' . USERS_TABLE . ' u': '') . "
d6e8d8
	WHERE p.topic_id = $topic_id
d6e8d8
		" . ((!$auth->acl_get('m_approve', $forum_id)) ? 'AND p.post_approved = 1' : '') . "
d6e8d8
		" . (($sort_by_sql[$sort_key][0] == 'u') ? 'AND u.user_id = p.poster_id': '') . "
d6e8d8
		$limit_posts_time
d6e8d8
	ORDER BY $sql_sort_order";
d6e8d8
$result = $db->sql_query_limit($sql, $sql_limit, $sql_start);
d6e8d8
d6e8d8
$i = ($store_reverse) ? $sql_limit - 1 : 0;
d6e8d8
while ($row = $db->sql_fetchrow($result))
d6e8d8
{
d6e8d8
	$post_list[$i] = $row['post_id'];
d6e8d8
	($store_reverse) ? $i-- : $i++;
d6e8d8
}
d6e8d8
$db->sql_freeresult($result);
d6e8d8
d6e8d8
if (!sizeof($post_list))
d6e8d8
{
d6e8d8
	if ($sort_days)
d6e8d8
	{
d6e8d8
		trigger_error('NO_POSTS_TIME_FRAME');
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		trigger_error('NO_TOPIC');
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// Holding maximum post time for marking topic read
d6e8d8
// We need to grab it because we do reverse ordering sometimes
d6e8d8
$max_post_time = 0;
d6e8d8
d6e8d8
$sql = $db->sql_build_query('SELECT', array(
d6e8d8
	'SELECT'	=> 'u.*, z.friend, z.foe, p.*',
d6e8d8
d6e8d8
	'FROM'		=> array(
d6e8d8
		USERS_TABLE		=> 'u',
d6e8d8
		POSTS_TABLE		=> 'p',
d6e8d8
	),
d6e8d8
d6e8d8
	'LEFT_JOIN'	=> array(
d6e8d8
		array(
d6e8d8
			'FROM'	=> array(ZEBRA_TABLE => 'z'),
d6e8d8
			'ON'	=> 'z.user_id = ' . $user->data['user_id'] . ' AND z.zebra_id = p.poster_id'
d6e8d8
		)
d6e8d8
	),
d6e8d8
d6e8d8
	'WHERE'		=> $db->sql_in_set('p.post_id', $post_list) . '
d6e8d8
		AND u.user_id = p.poster_id'
d6e8d8
));
d6e8d8
d6e8d8
$result = $db->sql_query($sql);
d6e8d8
d6e8d8
$now = getdate(time() + $user->timezone + $user->dst - date('Z'));
d6e8d8
d6e8d8
// Posts are stored in the $rowset array while $attach_list, $user_cache
d6e8d8
// and the global bbcode_bitfield are built
d6e8d8
while ($row = $db->sql_fetchrow($result))
d6e8d8
{
d6e8d8
	// Set max_post_time
d6e8d8
	if ($row['post_time'] > $max_post_time)
d6e8d8
	{
d6e8d8
		$max_post_time = $row['post_time'];
d6e8d8
	}
d6e8d8
d6e8d8
	$poster_id = $row['poster_id'];
d6e8d8
d6e8d8
	// Does post have an attachment? If so, add it to the list
d6e8d8
	if ($row['post_attachment'] && $config['allow_attachments'])
d6e8d8
	{
d6e8d8
		$attach_list[] = $row['post_id'];
d6e8d8
d6e8d8
		if ($row['post_approved'])
d6e8d8
		{
d6e8d8
			$has_attachments = true;
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$rowset[$row['post_id']] = array(
d6e8d8
		'hide_post'			=> ($row['foe'] && ($view != 'show' || $post_id != $row['post_id'])) ? true : false,
d6e8d8
d6e8d8
		'post_id'			=> $row['post_id'],
d6e8d8
		'post_time'			=> $row['post_time'],
d6e8d8
		'user_id'			=> $row['user_id'],
d6e8d8
		'username'			=> $row['username'],
d6e8d8
		'user_colour'		=> $row['user_colour'],
d6e8d8
		'topic_id'			=> $row['topic_id'],
d6e8d8
		'forum_id'			=> $row['forum_id'],
d6e8d8
		'post_subject'		=> $row['post_subject'],
d6e8d8
		'post_edit_count'	=> $row['post_edit_count'],
d6e8d8
		'post_edit_time'	=> $row['post_edit_time'],
d6e8d8
		'post_edit_reason'	=> $row['post_edit_reason'],
d6e8d8
		'post_edit_user'	=> $row['post_edit_user'],
d6e8d8
		'post_edit_locked'	=> $row['post_edit_locked'],
d6e8d8
d6e8d8
		// Make sure the icon actually exists
d6e8d8
		'icon_id'			=> (isset($icons[$row['icon_id']]['img'], $icons[$row['icon_id']]['height'], $icons[$row['icon_id']]['width'])) ? $row['icon_id'] : 0,
d6e8d8
		'post_attachment'	=> $row['post_attachment'],
d6e8d8
		'post_approved'		=> $row['post_approved'],
d6e8d8
		'post_reported'		=> $row['post_reported'],
d6e8d8
		'post_username'		=> $row['post_username'],
d6e8d8
		'post_text'			=> $row['post_text'],
d6e8d8
		'bbcode_uid'		=> $row['bbcode_uid'],
d6e8d8
		'bbcode_bitfield'	=> $row['bbcode_bitfield'],
d6e8d8
		'enable_smilies'	=> $row['enable_smilies'],
d6e8d8
		'enable_sig'		=> $row['enable_sig'],
d6e8d8
		'friend'			=> $row['friend'],
d6e8d8
		'foe'				=> $row['foe'],
d6e8d8
	);
d6e8d8
d6e8d8
	// Define the global bbcode bitfield, will be used to load bbcodes
d6e8d8
	$bbcode_bitfield = $bbcode_bitfield | base64_decode($row['bbcode_bitfield']);
d6e8d8
d6e8d8
	// Is a signature attached? Are we going to display it?
d6e8d8
	if ($row['enable_sig'] && $config['allow_sig'] && $user->optionget('viewsigs'))
d6e8d8
	{
d6e8d8
		$bbcode_bitfield = $bbcode_bitfield | base64_decode($row['user_sig_bbcode_bitfield']);
d6e8d8
	}
d6e8d8
d6e8d8
	// Cache various user specific data ... so we don't have to recompute
d6e8d8
	// this each time the same user appears on this page
d6e8d8
	if (!isset($user_cache[$poster_id]))
d6e8d8
	{
d6e8d8
		if ($poster_id == ANONYMOUS)
d6e8d8
		{
d6e8d8
			$user_cache[$poster_id] = array(
d6e8d8
				'joined'		=> '',
d6e8d8
				'posts'			=> '',
d6e8d8
				'from'			=> '',
d6e8d8
d6e8d8
				'sig'					=> '',
d6e8d8
				'sig_bbcode_uid'		=> '',
d6e8d8
				'sig_bbcode_bitfield'	=> '',
d6e8d8
d6e8d8
				'online'			=> false,
d6e8d8
				'avatar'			=> ($user->optionget('viewavatars')) ? get_user_avatar($row['user_avatar'], $row['user_avatar_type'], $row['user_avatar_width'], $row['user_avatar_height']) : '',
d6e8d8
				'rank_title'		=> '',
d6e8d8
				'rank_image'		=> '',
d6e8d8
				'rank_image_src'	=> '',
d6e8d8
				'sig'				=> '',
d6e8d8
				'profile'			=> '',
d6e8d8
				'pm'				=> '',
d6e8d8
				'email'				=> '',
d6e8d8
				'www'				=> '',
d6e8d8
				'icq_status_img'	=> '',
d6e8d8
				'icq'				=> '',
d6e8d8
				'aim'				=> '',
d6e8d8
				'msn'				=> '',
d6e8d8
				'yim'				=> '',
d6e8d8
				'jabber'			=> '',
d6e8d8
				'search'			=> '',
d6e8d8
				'age'				=> '',
d6e8d8
d6e8d8
				'username'			=> $row['username'],
d6e8d8
				'user_colour'		=> $row['user_colour'],
d6e8d8
d6e8d8
				'warnings'			=> 0,
d6e8d8
				'allow_pm'			=> 0,
d6e8d8
			);
d6e8d8
d6e8d8
			get_user_rank($row['user_rank'], false, $user_cache[$poster_id]['rank_title'], $user_cache[$poster_id]['rank_image'], $user_cache[$poster_id]['rank_image_src']);
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			$user_sig = '';
d6e8d8
d6e8d8
			// We add the signature to every posters entry because enable_sig is post dependant
d6e8d8
			if ($row['user_sig'] && $config['allow_sig'] && $user->optionget('viewsigs'))
d6e8d8
			{
d6e8d8
				$user_sig = $row['user_sig'];
d6e8d8
			}
d6e8d8
d6e8d8
			$id_cache[] = $poster_id;
d6e8d8
d6e8d8
			$user_cache[$poster_id] = array(
d6e8d8
				'joined'		=> $user->format_date($row['user_regdate']),
d6e8d8
				'posts'			=> $row['user_posts'],
d6e8d8
				'warnings'		=> (isset($row['user_warnings'])) ? $row['user_warnings'] : 0,
d6e8d8
				'from'			=> (!empty($row['user_from'])) ? $row['user_from'] : '',
d6e8d8
d6e8d8
				'sig'					=> $user_sig,
d6e8d8
				'sig_bbcode_uid'		=> (!empty($row['user_sig_bbcode_uid'])) ? $row['user_sig_bbcode_uid'] : '',
d6e8d8
				'sig_bbcode_bitfield'	=> (!empty($row['user_sig_bbcode_bitfield'])) ? $row['user_sig_bbcode_bitfield'] : '',
d6e8d8
d6e8d8
				'viewonline'	=> $row['user_allow_viewonline'],
d6e8d8
				'allow_pm'		=> $row['user_allow_pm'],
d6e8d8
d6e8d8
				'avatar'		=> ($user->optionget('viewavatars')) ? get_user_avatar($row['user_avatar'], $row['user_avatar_type'], $row['user_avatar_width'], $row['user_avatar_height']) : '',
d6e8d8
				'age'			=> '',
d6e8d8
d6e8d8
				'rank_title'		=> '',
d6e8d8
				'rank_image'		=> '',
d6e8d8
				'rank_image_src'	=> '',
d6e8d8
d6e8d8
				'username'			=> $row['username'],
d6e8d8
				'user_colour'		=> $row['user_colour'],
d6e8d8
d6e8d8
				'online'		=> false,
d6e8d8
				'profile'		=> append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=viewprofile&u=$poster_id"),
d6e8d8
				'www'			=> $row['user_website'],
d6e8d8
				'aim'			=> ($row['user_aim'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=aim&u=$poster_id") : '',
d6e8d8
				'msn'			=> ($row['user_msnm'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=msnm&u=$poster_id") : '',
d6e8d8
				'yim'			=> ($row['user_yim']) ? 'http://edit.yahoo.com/config/send_webmesg?.target=' . urlencode($row['user_yim']) . '&.src=pg' : '',
d6e8d8
				'jabber'		=> ($row['user_jabber'] && $auth->acl_get('u_sendim')) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=contact&action=jabber&u=$poster_id") : '',
d6e8d8
				'search'		=> ($auth->acl_get('u_search')) ? append_sid("{$phpbb_root_path}search.$phpEx", "author_id=$poster_id&sr=posts") : '',
d6e8d8
			);
d6e8d8
d6e8d8
			get_user_rank($row['user_rank'], $row['user_posts'], $user_cache[$poster_id]['rank_title'], $user_cache[$poster_id]['rank_image'], $user_cache[$poster_id]['rank_image_src']);
d6e8d8
d6e8d8
			if (!empty($row['user_allow_viewemail']) || $auth->acl_get('a_email'))
d6e8d8
			{
d6e8d8
				$user_cache[$poster_id]['email'] = ($config['board_email_form'] && $config['email_enable']) ? append_sid("{$phpbb_root_path}memberlist.$phpEx", "mode=email&u=$poster_id") : (($config['board_hide_emails'] && !$auth->acl_get('a_email')) ? '' : 'mailto:' . $row['user_email']);
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$user_cache[$poster_id]['email'] = '';
d6e8d8
			}
d6e8d8
d6e8d8
			if (!empty($row['user_icq']))
d6e8d8
			{
d6e8d8
				$user_cache[$poster_id]['icq'] = 'http://www.icq.com/people/webmsg.php?to=' . $row['user_icq'];
d6e8d8
				$user_cache[$poster_id]['icq_status_img'] = '';
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$user_cache[$poster_id]['icq_status_img'] = '';
d6e8d8
				$user_cache[$poster_id]['icq'] = '';
d6e8d8
			}
d6e8d8
d6e8d8
			if ($config['allow_birthdays'] && !empty($row['user_birthday']))
d6e8d8
			{
d6e8d8
				list($bday_day, $bday_month, $bday_year) = array_map('intval', explode('-', $row['user_birthday']));
d6e8d8
d6e8d8
				if ($bday_year)
d6e8d8
				{
d6e8d8
					$diff = $now['mon'] - $bday_month;
d6e8d8
					if ($diff == 0)
d6e8d8
					{
d6e8d8
						$diff = ($now['mday'] - $bday_day < 0) ? 1 : 0;
d6e8d8
					}
d6e8d8
					else
d6e8d8
					{
d6e8d8
						$diff = ($diff < 0) ? 1 : 0;
d6e8d8
					}
d6e8d8
d6e8d8
					$user_cache[$poster_id]['age'] = (int) ($now['year'] - $bday_year - $diff);
d6e8d8
				}
d6e8d8
			}
d6e8d8
		}
d6e8d8
	}
d6e8d8
}
d6e8d8
$db->sql_freeresult($result);
d6e8d8
d6e8d8
// Load custom profile fields
d6e8d8
if ($config['load_cpf_viewtopic'])
d6e8d8
{
d6e8d8
	include($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx);
d6e8d8
	$cp = new custom_profile();
d6e8d8
d6e8d8
	// Grab all profile fields from users in id cache for later use - similar to the poster cache
d6e8d8
	$profile_fields_cache = $cp->generate_profile_fields_template('grab', $id_cache);
d6e8d8
}
d6e8d8
d6e8d8
// Generate online information for user
d6e8d8
if ($config['load_onlinetrack'] && sizeof($id_cache))
d6e8d8
{
d6e8d8
	$sql = 'SELECT session_user_id, MAX(session_time) as online_time, MIN(session_viewonline) AS viewonline
d6e8d8
		FROM ' . SESSIONS_TABLE . '
d6e8d8
		WHERE ' . $db->sql_in_set('session_user_id', $id_cache) . '
d6e8d8
		GROUP BY session_user_id';
d6e8d8
	$result = $db->sql_query($sql);
d6e8d8
d6e8d8
	$update_time = $config['load_online_time'] * 60;
d6e8d8
	while ($row = $db->sql_fetchrow($result))
d6e8d8
	{
d6e8d8
		$user_cache[$row['session_user_id']]['online'] = (time() - $update_time < $row['online_time'] && (($row['viewonline']) || $auth->acl_get('u_viewonline'))) ? true : false;
d6e8d8
	}
d6e8d8
	$db->sql_freeresult($result);
d6e8d8
}
d6e8d8
unset($id_cache);
d6e8d8
d6e8d8
// Pull attachment data
d6e8d8
if (sizeof($attach_list))
d6e8d8
{
d6e8d8
	if ($auth->acl_get('u_download') && $auth->acl_get('f_download', $forum_id))
d6e8d8
	{
d6e8d8
		$sql = 'SELECT *
d6e8d8
			FROM ' . ATTACHMENTS_TABLE . '
d6e8d8
			WHERE ' . $db->sql_in_set('post_msg_id', $attach_list) . '
d6e8d8
				AND in_message = 0
d6e8d8
			ORDER BY filetime DESC, post_msg_id ASC';
d6e8d8
		$result = $db->sql_query($sql);
d6e8d8
d6e8d8
		while ($row = $db->sql_fetchrow($result))
d6e8d8
		{
d6e8d8
			$attachments[$row['post_msg_id']][] = $row;
d6e8d8
		}
d6e8d8
		$db->sql_freeresult($result);
d6e8d8
d6e8d8
		// No attachments exist, but post table thinks they do so go ahead and reset post_attach flags
d6e8d8
		if (!sizeof($attachments))
d6e8d8
		{
d6e8d8
			$sql = 'UPDATE ' . POSTS_TABLE . '
d6e8d8
				SET post_attachment = 0
d6e8d8
				WHERE ' . $db->sql_in_set('post_id', $attach_list);
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			// We need to update the topic indicator too if the complete topic is now without an attachment
d6e8d8
			if (sizeof($rowset) != $total_posts)
d6e8d8
			{
d6e8d8
				// Not all posts are displayed so we query the db to find if there's any attachment for this topic
d6e8d8
				$sql = 'SELECT a.post_msg_id as post_id
d6e8d8
					FROM ' . ATTACHMENTS_TABLE . ' a, ' . POSTS_TABLE . " p
d6e8d8
					WHERE p.topic_id = $topic_id
d6e8d8
						AND p.post_approved = 1
d6e8d8
						AND p.topic_id = a.topic_id";
d6e8d8
				$result = $db->sql_query_limit($sql, 1);
d6e8d8
				$row = $db->sql_fetchrow($result);
d6e8d8
				$db->sql_freeresult($result);
d6e8d8
d6e8d8
				if (!$row)
d6e8d8
				{
d6e8d8
					$sql = 'UPDATE ' . TOPICS_TABLE . "
d6e8d8
						SET topic_attachment = 0
d6e8d8
						WHERE topic_id = $topic_id";
d6e8d8
					$db->sql_query($sql);
d6e8d8
				}
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$sql = 'UPDATE ' . TOPICS_TABLE . "
d6e8d8
					SET topic_attachment = 0
d6e8d8
					WHERE topic_id = $topic_id";
d6e8d8
				$db->sql_query($sql);
d6e8d8
			}
d6e8d8
		}
d6e8d8
		else if ($has_attachments && !$topic_data['topic_attachment'])
d6e8d8
		{
d6e8d8
			// Topic has approved attachments but its flag is wrong
d6e8d8
			$sql = 'UPDATE ' . TOPICS_TABLE . "
d6e8d8
				SET topic_attachment = 1
d6e8d8
				WHERE topic_id = $topic_id";
d6e8d8
			$db->sql_query($sql);
d6e8d8
d6e8d8
			$topic_data['topic_attachment'] = 1;
d6e8d8
		}
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$display_notice = true;
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// Instantiate BBCode if need be
d6e8d8
if ($bbcode_bitfield !== '')
d6e8d8
{
d6e8d8
	$bbcode = new bbcode(base64_encode($bbcode_bitfield));
d6e8d8
}
d6e8d8
d6e8d8
$i_total = sizeof($rowset) - 1;
d6e8d8
$prev_post_id = '';
d6e8d8
d6e8d8
$template->assign_vars(array(
d6e8d8
	'S_NUM_POSTS' => sizeof($post_list))
d6e8d8
);
d6e8d8
d6e8d8
// Output the posts
d6e8d8
$first_unread = $post_unread = false;
d6e8d8
for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
d6e8d8
{
d6e8d8
	// A non-existing rowset only happens if there was no user present for the entered poster_id
d6e8d8
	// This could be a broken posts table.
d6e8d8
	if (!isset($rowset[$post_list[$i]]))
d6e8d8
	{
d6e8d8
		continue;
d6e8d8
	}
d6e8d8
d6e8d8
	$row =& $rowset[$post_list[$i]];
d6e8d8
	$poster_id = $row['user_id'];
d6e8d8
d6e8d8
	// End signature parsing, only if needed
d6e8d8
	if ($user_cache[$poster_id]['sig'] && $row['enable_sig'] && empty($user_cache[$poster_id]['sig_parsed']))
d6e8d8
	{
d6e8d8
		$user_cache[$poster_id]['sig'] = censor_text($user_cache[$poster_id]['sig']);
d6e8d8
d6e8d8
		if ($user_cache[$poster_id]['sig_bbcode_bitfield'])
d6e8d8
		{
d6e8d8
			$bbcode->bbcode_second_pass($user_cache[$poster_id]['sig'], $user_cache[$poster_id]['sig_bbcode_uid'], $user_cache[$poster_id]['sig_bbcode_bitfield']);
d6e8d8
		}
d6e8d8
d6e8d8
		$user_cache[$poster_id]['sig'] = bbcode_nl2br($user_cache[$poster_id]['sig']);
d6e8d8
		$user_cache[$poster_id]['sig'] = smiley_text($user_cache[$poster_id]['sig']);
d6e8d8
		$user_cache[$poster_id]['sig_parsed'] = true;
d6e8d8
	}
d6e8d8
d6e8d8
	// Parse the message and subject
d6e8d8
	$message = censor_text($row['post_text']);
d6e8d8
d6e8d8
	// Second parse bbcode here
d6e8d8
	if ($row['bbcode_bitfield'])
d6e8d8
	{
d6e8d8
		$bbcode->bbcode_second_pass($message, $row['bbcode_uid'], $row['bbcode_bitfield']);
d6e8d8
	}
d6e8d8
d6e8d8
	$message = bbcode_nl2br($message);
d6e8d8
	$message = smiley_text($message);
d6e8d8
d6e8d8
	if (!empty($attachments[$row['post_id']]))
d6e8d8
	{
d6e8d8
		parse_attachments($forum_id, $message, $attachments[$row['post_id']], $update_count);
d6e8d8
	}
d6e8d8
d6e8d8
	// Replace naughty words such as farty pants
d6e8d8
	$row['post_subject'] = censor_text($row['post_subject']);
d6e8d8
d6e8d8
	// Highlight active words (primarily for search)
d6e8d8
	if ($highlight_match)
d6e8d8
	{
d6e8d8
		$message = preg_replace('#(?!<.*)(?]*(?:</s(?:cript|tyle))?>)#is', '\1', $message);
d6e8d8
		$row['post_subject'] = preg_replace('#(?!<.*)(?]*(?:</s(?:cript|tyle))?>)#is', '\1', $row['post_subject']);
d6e8d8
	}
d6e8d8
d6e8d8
	// Editing information
d6e8d8
	if (($row['post_edit_count'] && $config['display_last_edited']) || $row['post_edit_reason'])
d6e8d8
	{
d6e8d8
		// Get usernames for all following posts if not already stored
d6e8d8
		if (!sizeof($post_edit_list) && ($row['post_edit_reason'] || ($row['post_edit_user'] && !isset($user_cache[$row['post_edit_user']]))))
d6e8d8
		{
d6e8d8
			// Remove all post_ids already parsed (we do not have to check them)
d6e8d8
			$post_storage_list = (!$store_reverse) ? array_slice($post_list, $i) : array_slice(array_reverse($post_list), $i);
d6e8d8
d6e8d8
			$sql = 'SELECT DISTINCT u.user_id, u.username, u.user_colour
d6e8d8
				FROM ' . POSTS_TABLE . ' p, ' . USERS_TABLE . ' u
d6e8d8
				WHERE ' . $db->sql_in_set('p.post_id', $post_storage_list) . '
d6e8d8
					AND p.post_edit_count <> 0
d6e8d8
					AND p.post_edit_user <> 0
d6e8d8
					AND p.post_edit_user = u.user_id';
d6e8d8
			$result2 = $db->sql_query($sql);
d6e8d8
			while ($user_edit_row = $db->sql_fetchrow($result2))
d6e8d8
			{
d6e8d8
				$post_edit_list[$user_edit_row['user_id']] = $user_edit_row;
d6e8d8
			}
d6e8d8
			$db->sql_freeresult($result2);
d6e8d8
d6e8d8
			unset($post_storage_list);
d6e8d8
		}
d6e8d8
d6e8d8
		$l_edit_time_total = ($row['post_edit_count'] == 1) ? $user->lang['EDITED_TIME_TOTAL'] : $user->lang['EDITED_TIMES_TOTAL'];
d6e8d8
d6e8d8
		if ($row['post_edit_reason'])
d6e8d8
		{
d6e8d8
			// User having edited the post also being the post author?
d6e8d8
			if (!$row['post_edit_user'] || $row['post_edit_user'] == $poster_id)
d6e8d8
			{
d6e8d8
				$display_username = get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']);
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$display_username = get_username_string('full', $row['post_edit_user'], $post_edit_list[$row['post_edit_user']]['username'], $post_edit_list[$row['post_edit_user']]['user_colour']);
d6e8d8
			}
d6e8d8
d6e8d8
			$l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']);
d6e8d8
		}
d6e8d8
		else
d6e8d8
		{
d6e8d8
			if ($row['post_edit_user'] && !isset($user_cache[$row['post_edit_user']]))
d6e8d8
			{
d6e8d8
				$user_cache[$row['post_edit_user']] = $post_edit_list[$row['post_edit_user']];
d6e8d8
			}
d6e8d8
d6e8d8
			// User having edited the post also being the post author?
d6e8d8
			if (!$row['post_edit_user'] || $row['post_edit_user'] == $poster_id)
d6e8d8
			{
d6e8d8
				$display_username = get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']);
d6e8d8
			}
d6e8d8
			else
d6e8d8
			{
d6e8d8
				$display_username = get_username_string('full', $row['post_edit_user'], $user_cache[$row['post_edit_user']]['username'], $user_cache[$row['post_edit_user']]['user_colour']);
d6e8d8
			}
d6e8d8
d6e8d8
			$l_edited_by = sprintf($l_edit_time_total, $display_username, $user->format_date($row['post_edit_time'], false, true), $row['post_edit_count']);
d6e8d8
		}
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$l_edited_by = '';
d6e8d8
	}
d6e8d8
d6e8d8
	// Bump information
d6e8d8
	if ($topic_data['topic_bumped'] && $row['post_id'] == $topic_data['topic_last_post_id'] && isset($user_cache[$topic_data['topic_bumper']]) )
d6e8d8
	{
d6e8d8
		// It is safe to grab the username from the user cache array, we are at the last
d6e8d8
		// post and only the topic poster and last poster are allowed to bump.
d6e8d8
		// Admins and mods are bound to the above rules too...
d6e8d8
		$l_bumped_by = '

' . sprintf($user->lang['BUMPED_BY'], $user_cache[$topic_data['topic_bumper']]['username'], $user->format_date($topic_data['topic_last_post_time']));
d6e8d8
	}
d6e8d8
	else
d6e8d8
	{
d6e8d8
		$l_bumped_by = '';
d6e8d8
	}
d6e8d8
d6e8d8
	$cp_row = array();
d6e8d8
d6e8d8
	//
d6e8d8
	if ($config['load_cpf_viewtopic'])
d6e8d8
	{
d6e8d8
		$cp_row = (isset($profile_fields_cache[$poster_id])) ? $cp->generate_profile_fields_template('show', false, $profile_fields_cache[$poster_id]) : array();
d6e8d8
	}
d6e8d8
d6e8d8
	$post_unread = (isset($topic_tracking_info[$topic_id]) && $row['post_time'] > $topic_tracking_info[$topic_id]) ? true : false;
d6e8d8
d6e8d8
	$s_first_unread = false;
d6e8d8
	if (!$first_unread && $post_unread)
d6e8d8
	{
d6e8d8
		$s_first_unread = $first_unread = true;
d6e8d8
	}
d6e8d8
d6e8d8
	//
d6e8d8
	$postrow = array(
d6e8d8
		'POST_AUTHOR_FULL'		=> get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']),
d6e8d8
		'POST_AUTHOR_COLOUR'	=> get_username_string('colour', $poster_id, $row['username'], $row['user_colour'], $row['post_username']),
d6e8d8
		'POST_AUTHOR'			=> get_username_string('username', $poster_id, $row['username'], $row['user_colour'], $row['post_username']),
d6e8d8
		'U_POST_AUTHOR'			=> get_username_string('profile', $poster_id, $row['username'], $row['user_colour'], $row['post_username']),
d6e8d8
d6e8d8
		'RANK_TITLE'		=> $user_cache[$poster_id]['rank_title'],
d6e8d8
		'RANK_IMG'			=> $user_cache[$poster_id]['rank_image'],
d6e8d8
		'RANK_IMG_SRC'		=> $user_cache[$poster_id]['rank_image_src'],
d6e8d8
		'POSTER_JOINED'		=> $user_cache[$poster_id]['joined'],
d6e8d8
		'POSTER_POSTS'		=> $user_cache[$poster_id]['posts'],
d6e8d8
		'POSTER_FROM'		=> $user_cache[$poster_id]['from'],
d6e8d8
		'POSTER_AVATAR'		=> $user_cache[$poster_id]['avatar'],
d6e8d8
		'POSTER_WARNINGS'	=> $user_cache[$poster_id]['warnings'],
d6e8d8
		'POSTER_AGE'		=> $user_cache[$poster_id]['age'],
d6e8d8
d6e8d8
		'POST_DATE'			=> $user->format_date($row['post_time']),
d6e8d8
		'POST_SUBJECT'		=> $row['post_subject'],
d6e8d8
		'MESSAGE'			=> $message,
d6e8d8
		'SIGNATURE'			=> ($row['enable_sig']) ? $user_cache[$poster_id]['sig'] : '',
d6e8d8
		'EDITED_MESSAGE'	=> $l_edited_by,
d6e8d8
		'EDIT_REASON'		=> $row['post_edit_reason'],
d6e8d8
		'BUMPED_MESSAGE'	=> $l_bumped_by,
d6e8d8
d6e8d8
		'MINI_POST_IMG'			=> ($post_unread) ? $user->img('icon_post_target_unread', 'NEW_POST') : $user->img('icon_post_target', 'POST'),
d6e8d8
		'POST_ICON_IMG'			=> ($topic_data['enable_icons'] && !empty($row['icon_id'])) ? $icons[$row['icon_id']]['img'] : '',
d6e8d8
		'POST_ICON_IMG_WIDTH'	=> ($topic_data['enable_icons'] && !empty($row['icon_id'])) ? $icons[$row['icon_id']]['width'] : '',
d6e8d8
		'POST_ICON_IMG_HEIGHT'	=> ($topic_data['enable_icons'] && !empty($row['icon_id'])) ? $icons[$row['icon_id']]['height'] : '',
d6e8d8
		'ICQ_STATUS_IMG'		=> $user_cache[$poster_id]['icq_status_img'],
d6e8d8
		'ONLINE_IMG'			=> ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? '' : (($user_cache[$poster_id]['online']) ? $user->img('icon_user_online', 'ONLINE') : $user->img('icon_user_offline', 'OFFLINE')),
d6e8d8
		'S_ONLINE'				=> ($poster_id == ANONYMOUS || !$config['load_onlinetrack']) ? false : (($user_cache[$poster_id]['online']) ? true : false),
d6e8d8
d6e8d8
		'U_EDIT'			=> (!$user->data['is_registered']) ? '' : ((($user->data['user_id'] == $poster_id && $auth->acl_get('f_edit', $forum_id) && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_edit', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=edit&f=$forum_id&p={$row['post_id']}") : ''),
d6e8d8
		'U_QUOTE'			=> ($auth->acl_get('f_reply', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=quote&f=$forum_id&p={$row['post_id']}") : '',
d6e8d8
		'U_INFO'			=> ($auth->acl_get('m_info', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", "i=main&mode=post_details&f=$forum_id&p=" . $row['post_id'], true, $user->session_id) : '',
d6e8d8
		'U_DELETE'			=> (!$user->data['is_registered']) ? '' : ((($user->data['user_id'] == $poster_id && $auth->acl_get('f_delete', $forum_id) && $topic_data['topic_last_post_id'] == $row['post_id'] && !$row['post_edit_locked'] && ($row['post_time'] > time() - ($config['edit_time'] * 60) || !$config['edit_time'])) || $auth->acl_get('m_delete', $forum_id)) ? append_sid("{$phpbb_root_path}posting.$phpEx", "mode=delete&f=$forum_id&p={$row['post_id']}") : ''),
d6e8d8
d6e8d8
		'U_PROFILE'		=> $user_cache[$poster_id]['profile'],
d6e8d8
		'U_SEARCH'		=> $user_cache[$poster_id]['search'],
d6e8d8
		'U_PM'			=> ($poster_id != ANONYMOUS && $config['allow_privmsg'] && $auth->acl_get('u_sendpm') && ($user_cache[$poster_id]['allow_pm'] || $auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_'))) ? append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm&mode=compose&action=quotepost&p=' . $row['post_id']) : '',
d6e8d8
		'U_EMAIL'		=> $user_cache[$poster_id]['email'],
d6e8d8
		'U_WWW'			=> $user_cache[$poster_id]['www'],
d6e8d8
		'U_ICQ'			=> $user_cache[$poster_id]['icq'],
d6e8d8
		'U_AIM'			=> $user_cache[$poster_id]['aim'],
d6e8d8
		'U_MSN'			=> $user_cache[$poster_id]['msn'],
d6e8d8
		'U_YIM'			=> $user_cache[$poster_id]['yim'],
d6e8d8
		'U_JABBER'		=> $user_cache[$poster_id]['jabber'],
d6e8d8
d6e8d8
		'U_REPORT'			=> ($auth->acl_get('f_report', $forum_id)) ? append_sid("{$phpbb_root_path}report.$phpEx", 'f=' . $forum_id . '&p=' . $row['post_id']) : '',
d6e8d8
		'U_MCP_REPORT'		=> ($auth->acl_get('m_report', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=reports&mode=report_details&f=' . $forum_id . '&p=' . $row['post_id'], true, $user->session_id) : '',
d6e8d8
		'U_MCP_APPROVE'		=> ($auth->acl_get('m_approve', $forum_id)) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=queue&mode=approve_details&f=' . $forum_id . '&p=' . $row['post_id'], true, $user->session_id) : '',
d6e8d8
		'U_MINI_POST'		=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'p=' . $row['post_id']) . (($topic_data['topic_type'] == POST_GLOBAL) ? '&f=' . $forum_id : '') . '#p' . $row['post_id'],
d6e8d8
		'U_NEXT_POST_ID'	=> ($i < $i_total && isset($rowset[$post_list[$i + 1]])) ? $rowset[$post_list[$i + 1]]['post_id'] : '',
d6e8d8
		'U_PREV_POST_ID'	=> $prev_post_id,
d6e8d8
		'U_NOTES'			=> ($auth->acl_getf_global('m_')) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=notes&mode=user_notes&u=' . $poster_id, true, $user->session_id) : '',
d6e8d8
		'U_WARN'			=> ($auth->acl_get('m_warn') && $poster_id != $user->data['user_id'] && $poster_id != ANONYMOUS) ? append_sid("{$phpbb_root_path}mcp.$phpEx", 'i=warn&mode=warn_post&f=' . $forum_id . '&p=' . $row['post_id'], true, $user->session_id) : '',
d6e8d8
d6e8d8
		'POST_ID'			=> $row['post_id'],
d6e8d8
		'POSTER_ID'			=> $poster_id,
d6e8d8
d6e8d8
		'S_HAS_ATTACHMENTS'	=> (!empty($attachments[$row['post_id']])) ? true : false,
d6e8d8
		'S_POST_UNAPPROVED'	=> ($row['post_approved']) ? false : true,
d6e8d8
		'S_POST_REPORTED'	=> ($row['post_reported'] && $auth->acl_get('m_report', $forum_id)) ? true : false,
d6e8d8
		'S_DISPLAY_NOTICE'	=> $display_notice && $row['post_attachment'],
d6e8d8
		'S_FRIEND'			=> ($row['friend']) ? true : false,
d6e8d8
		'S_UNREAD_POST'		=> $post_unread,
d6e8d8
		'S_FIRST_UNREAD'	=> $s_first_unread,
d6e8d8
		'S_CUSTOM_FIELDS'	=> (isset($cp_row['row']) && sizeof($cp_row['row'])) ? true : false,
d6e8d8
		'S_TOPIC_POSTER'	=> ($topic_data['topic_poster'] == $poster_id) ? true : false,
d6e8d8
d6e8d8
		'S_IGNORE_POST'		=> ($row['hide_post']) ? true : false,
d6e8d8
		'L_IGNORE_POST'		=> ($row['hide_post']) ? sprintf($user->lang['POST_BY_FOE'], get_username_string('full', $poster_id, $row['username'], $row['user_colour'], $row['post_username']), '', '') : '',
d6e8d8
	);
d6e8d8
d6e8d8
	if (isset($cp_row['row']) && sizeof($cp_row['row']))
d6e8d8
	{
d6e8d8
		$postrow = array_merge($postrow, $cp_row['row']);
d6e8d8
	}
d6e8d8
d6e8d8
	// Dump vars into template
d6e8d8
	$template->assign_block_vars('postrow', $postrow);
d6e8d8
d6e8d8
	if (!empty($cp_row['blockrow']))
d6e8d8
	{
d6e8d8
		foreach ($cp_row['blockrow'] as $field_data)
d6e8d8
		{
d6e8d8
			$template->assign_block_vars('postrow.custom_fields', $field_data);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	// Display not already displayed Attachments for this post, we already parsed them. ;)
d6e8d8
	if (!empty($attachments[$row['post_id']]))
d6e8d8
	{
d6e8d8
		foreach ($attachments[$row['post_id']] as $attachment)
d6e8d8
		{
d6e8d8
			$template->assign_block_vars('postrow.attachment', array(
d6e8d8
				'DISPLAY_ATTACHMENT'	=> $attachment)
d6e8d8
			);
d6e8d8
		}
d6e8d8
	}
d6e8d8
d6e8d8
	$prev_post_id = $row['post_id'];
d6e8d8
d6e8d8
	unset($rowset[$post_list[$i]]);
d6e8d8
	unset($attachments[$row['post_id']]);
d6e8d8
}
d6e8d8
unset($rowset, $user_cache);
d6e8d8
d6e8d8
// Update topic view and if necessary attachment view counters ... but only for humans and if this is the first 'page view'
d6e8d8
if (isset($user->data['session_page']) && !$user->data['is_bot'] && strpos($user->data['session_page'], '&t=' . $topic_id) === false)
d6e8d8
{
d6e8d8
	$sql = 'UPDATE ' . TOPICS_TABLE . '
d6e8d8
		SET topic_views = topic_views + 1, topic_last_view_time = ' . time() . "
d6e8d8
		WHERE topic_id = $topic_id";
d6e8d8
	$db->sql_query($sql);
d6e8d8
d6e8d8
	// Update the attachment download counts
d6e8d8
	if (sizeof($update_count))
d6e8d8
	{
d6e8d8
		$sql = 'UPDATE ' . ATTACHMENTS_TABLE . '
d6e8d8
			SET download_count = download_count + 1
d6e8d8
			WHERE ' . $db->sql_in_set('attach_id', array_unique($update_count));
d6e8d8
		$db->sql_query($sql);
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// Only mark topic if it's currently unread. Also make sure we do not set topic tracking back if earlier pages are viewed.
d6e8d8
if (isset($topic_tracking_info[$topic_id]) && $topic_data['topic_last_post_time'] > $topic_tracking_info[$topic_id] && $max_post_time > $topic_tracking_info[$topic_id])
d6e8d8
{
d6e8d8
	markread('topic', $forum_id, $topic_id, $max_post_time);
d6e8d8
d6e8d8
	// Update forum info
d6e8d8
	$all_marked_read = update_forum_tracking_info($forum_id, $topic_data['forum_last_post_time'], (isset($topic_data['forum_mark_time'])) ? $topic_data['forum_mark_time'] : false, false);
d6e8d8
}
d6e8d8
else
d6e8d8
{
d6e8d8
	$all_marked_read = true;
d6e8d8
}
d6e8d8
d6e8d8
// If there are absolutely no more unread posts in this forum and unread posts shown, we can savely show the #unread link
d6e8d8
if ($all_marked_read)
d6e8d8
{
d6e8d8
	if ($post_unread)
d6e8d8
	{
d6e8d8
		$template->assign_vars(array(
d6e8d8
			'U_VIEW_UNREAD_POST'	=> '#unread',
d6e8d8
		));
d6e8d8
	}
d6e8d8
	else if (isset($topic_tracking_info[$topic_id]) && $topic_data['topic_last_post_time'] > $topic_tracking_info[$topic_id])
d6e8d8
	{
d6e8d8
		$template->assign_vars(array(
d6e8d8
			'U_VIEW_UNREAD_POST'	=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&view=unread") . '#unread',
d6e8d8
		));
d6e8d8
	}
d6e8d8
}
d6e8d8
else if (!$all_marked_read)
d6e8d8
{
d6e8d8
	$last_page = ((floor($start / $config['posts_per_page']) + 1) == max(ceil($total_posts / $config['posts_per_page']), 1)) ? true : false;
d6e8d8
d6e8d8
	// What can happen is that we are at the last displayed page. If so, we also display the #unread link based in $post_unread
d6e8d8
	if ($last_page && $post_unread)
d6e8d8
	{
d6e8d8
		$template->assign_vars(array(
d6e8d8
			'U_VIEW_UNREAD_POST'	=> '#unread',
d6e8d8
		));
d6e8d8
	}
d6e8d8
	else if (!$last_page)
d6e8d8
	{
d6e8d8
		$template->assign_vars(array(
d6e8d8
			'U_VIEW_UNREAD_POST'	=> append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&t=$topic_id&view=unread") . '#unread',
d6e8d8
		));
d6e8d8
	}
d6e8d8
}
d6e8d8
d6e8d8
// We overwrite $_REQUEST['f'] if there is no forum specified
d6e8d8
// to be able to display the correct online list.
d6e8d8
// One downside is that the user currently viewing this topic/post is not taken into account.
d6e8d8
if (empty($_REQUEST['f']))
d6e8d8
{
d6e8d8
	$_REQUEST['f'] = $forum_id;
d6e8d8
}
d6e8d8
d6e8d8
// Output the page
d6e8d8
page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title']);
d6e8d8
d6e8d8
$template->set_filenames(array(
d6e8d8
	'body' => ($view == 'print') ? 'viewtopic_print.html' : 'viewtopic_body.html')
d6e8d8
);
d6e8d8
make_jumpbox(append_sid("{$phpbb_root_path}viewforum.$phpEx"), $forum_id);
d6e8d8
d6e8d8
page_footer();
d6e8d8
d6e8d8
?>