Blame Extras/phpBB/3.0.4/viewtopic.php

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

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

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

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

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

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