Vergleich showthread.php - 1.8.20 - 1.8.30

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 19Zeile 19
$templatelist .= ",showthread_usersbrowsing,showthread_usersbrowsing_user,showthread_poll_option,showthread_poll,showthread_quickreply_options_signature,showthread_threaded_bitactive,showthread_threaded_bit,postbit_attachments_attachment_unapproved";
$templatelist .= ",showthread_moderationoptions_openclose,showthread_moderationoptions_stickunstick,showthread_moderationoptions_delete,showthread_moderationoptions_threadnotes,showthread_moderationoptions_manage,showthread_moderationoptions_deletepoll";
$templatelist .= ",postbit_userstar,postbit_reputation_formatted_link,postbit_warninglevel_formatted,postbit_quickrestore,forumdisplay_password,forumdisplay_password_wrongpass,postbit_purgespammer,showthread_inlinemoderation_approve,forumdisplay_thread_icon";

$templatelist .= ",showthread_usersbrowsing,showthread_usersbrowsing_user,showthread_poll_option,showthread_poll,showthread_quickreply_options_signature,showthread_threaded_bitactive,showthread_threaded_bit,postbit_attachments_attachment_unapproved";
$templatelist .= ",showthread_moderationoptions_openclose,showthread_moderationoptions_stickunstick,showthread_moderationoptions_delete,showthread_moderationoptions_threadnotes,showthread_moderationoptions_manage,showthread_moderationoptions_deletepoll";
$templatelist .= ",postbit_userstar,postbit_reputation_formatted_link,postbit_warninglevel_formatted,postbit_quickrestore,forumdisplay_password,forumdisplay_password_wrongpass,postbit_purgespammer,showthread_inlinemoderation_approve,forumdisplay_thread_icon";

$templatelist .= ",showthread_moderationoptions_softdelete,showthread_moderationoptions_restore,post_captcha,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,showthread_moderationoptions,showthread_inlinemoderation_standard,showthread_inlinemoderation_manage";

$templatelist .= ",showthread_moderationoptions_softdelete,showthread_moderationoptions_restore,post_captcha,post_captcha_recaptcha_invisible,post_captcha_nocaptcha,post_captcha_hcaptcha_invisible,post_captcha_hcaptcha,showthread_moderationoptions,showthread_inlinemoderation_standard,showthread_inlinemoderation_manage";

$templatelist .= ",showthread_ratethread,postbit_posturl,postbit_icon,postbit_editedby_editreason,attachment_icon,global_moderation_notice,showthread_poll_option_multiple,postbit_gotopost,postbit_rep_button,postbit_warninglevel,showthread_threadnoteslink";
$templatelist .= ",showthread_moderationoptions_approve,showthread_moderationoptions_unapprove,showthread_inlinemoderation_delete,showthread_moderationoptions_standard,showthread_quickreply_options_close,showthread_inlinemoderation_custom,showthread_search";
$templatelist .= ",postbit_profilefield_multiselect_value,postbit_profilefield_multiselect,showthread_subscription,postbit_deleted_member,postbit_away,postbit_warn,postbit_classic,postbit_reputation,postbit_deleted,postbit_offline,postbit_online,postbit_signature";

$templatelist .= ",showthread_ratethread,postbit_posturl,postbit_icon,postbit_editedby_editreason,attachment_icon,global_moderation_notice,showthread_poll_option_multiple,postbit_gotopost,postbit_rep_button,postbit_warninglevel,showthread_threadnoteslink";
$templatelist .= ",showthread_moderationoptions_approve,showthread_moderationoptions_unapprove,showthread_inlinemoderation_delete,showthread_moderationoptions_standard,showthread_quickreply_options_close,showthread_inlinemoderation_custom,showthread_search";
$templatelist .= ",postbit_profilefield_multiselect_value,postbit_profilefield_multiselect,showthread_subscription,postbit_deleted_member,postbit_away,postbit_warn,postbit_classic,postbit_reputation,postbit_deleted,postbit_offline,postbit_online,postbit_signature";

Zeile 51Zeile 51
		$query = $db->simple_select("posts", "fid,tid,visible", "pid=".$mybb->get_input('pid', MyBB::INPUT_INT), $options);
$post = $db->fetch_array($query);


		$query = $db->simple_select("posts", "fid,tid,visible", "pid=".$mybb->get_input('pid', MyBB::INPUT_INT), $options);
$post = $db->fetch_array($query);


		if(empty($post) || ($post['visible'] == 0 && !is_moderator($post['fid'], 'canviewunapprove')) || ($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted')))










		if(
empty($post) ||
(
$post['visible'] == 0 && !(
is_moderator($post['fid'], 'canviewunapprove') ||
($mybb->user['uid'] && $post['uid'] == $mybb->user['uid'] && $mybb->settings['showownunapproved'])
)
) ||
($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted'))
)

		{
// post does not exist --> show corresponding error
error($lang->error_invalidpost);

		{
// post does not exist --> show corresponding error
error($lang->error_invalidpost);

Zeile 103Zeile 112
$forumpermissions = forum_permissions($thread['fid']);

// Set here to fetch only approved/deleted posts (and then below for a moderator we change this).

$forumpermissions = forum_permissions($thread['fid']);

// Set here to fetch only approved/deleted posts (and then below for a moderator we change this).

 
$visible_states = array("1");


if($forumpermissions['canviewdeletionnotice'] != 0)

if($forumpermissions['canviewdeletionnotice'] != 0)

{
$visibleonly = " AND visible IN (-1,1)";
$visibleonly2 = "AND p.visible IN (-1,1) AND t.visible IN (-1,1)";
}
else
{
$visibleonly = " AND visible=1";
$visibleonly2 = "AND p.visible=1 AND t.visible=1";

{
$visible_states[] = "-1";







}

// Is the currently logged in user a moderator of this forum?
if(is_moderator($fid))
{
$ismod = true;

}

// Is the currently logged in user a moderator of this forum?
if(is_moderator($fid))
{
$ismod = true;

	if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)

	if(is_moderator($fid, "canviewdeleted") == true)

	{

	{

		if(is_moderator($fid, "canviewunapprove") == true && is_moderator($fid, "canviewdeleted") == false)
{
$visibleonly = " AND visible IN (0,1)";
$visibleonly2 = "AND p.visible IN (0,1) AND t.visible IN (0,1)";
}
elseif(is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == false)
{
$visibleonly = " AND visible IN (-1,1)";
$visibleonly2 = "AND p.visible IN (-1,1) AND t.visible IN (-1,1)";
}
else
{
$visibleonly = " AND visible IN (-1,0,1)";
$visibleonly2 = "AND p.visible IN (-1,0,1) AND t.visible IN (-1,0,1)";
}

		$visible_states[] = "-1";
}
if(is_moderator($fid, "canviewunapprove") == true)
{
$visible_states[] = "0";











	}
}
else
{

	}
}
else
{

	$ismod = false;
}



















	$ismod = false;
}

$visible_condition = "visible IN (".implode(',', array_unique($visible_states)).")";

// Allow viewing own unapproved threads for logged in users
if($mybb->user['uid'] && $mybb->settings['showownunapproved'])
{
$own_unapproved = ' AND (%1$s'.$visible_condition.' OR (%1$svisible=0 AND %1$suid='.(int)$mybb->user['uid'].'))';

$visibleonly = sprintf($own_unapproved, null);
$visibleonly_p = sprintf($own_unapproved, 'p.');
$visibleonly_p_t = sprintf($own_unapproved, 'p.').sprintf($own_unapproved, 't.');
}
else
{
$visibleonly = " AND ".$visible_condition;
$visibleonly_p = " AND p.".$visible_condition;
$visibleonly_p_t = "AND p.".$visible_condition." AND t.".$visible_condition;
}


// Make sure we are looking at a real thread here.
if(($thread['visible'] != 1 && $ismod == false) || ($thread['visible'] == 0 && !is_moderator($fid, "canviewunapprove")) || ($thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted")))


// Make sure we are looking at a real thread here.
if(($thread['visible'] != 1 && $ismod == false) || ($thread['visible'] == 0 && !is_moderator($fid, "canviewunapprove")) || ($thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted")))

{

{

	// Allow viewing own unapproved thread
if (!($mybb->user['uid'] && $mybb->settings['showownunapproved'] && $thread['visible'] == 0 && ($thread['uid'] == $mybb->user['uid'])))
{

	// Allow viewing own unapproved thread
if (!($mybb->user['uid'] && $mybb->settings['showownunapproved'] && $thread['visible'] == 0 && ($thread['uid'] == $mybb->user['uid'])))
{

Zeile 154Zeile 167

// Does the user have permission to view this thread?
if($forumpermissions['canview'] != 1 || $forumpermissions['canviewthreads'] != 1)


// Does the user have permission to view this thread?
if($forumpermissions['canview'] != 1 || $forumpermissions['canviewthreads'] != 1)

{
error_no_permission();
}

{
error_no_permission();
}


if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1 && $thread['uid'] != $mybb->user['uid'])
{
error_no_permission();


if(isset($forumpermissions['canonlyviewownthreads']) && $forumpermissions['canonlyviewownthreads'] == 1 && $thread['uid'] != $mybb->user['uid'])
{
error_no_permission();

}

$archive_url = build_archive_link("thread", $tid);

}

$archive_url = build_archive_link("thread", $tid);


// Does the thread belong to a valid forum?
$forum = get_forum($fid);
if(!$forum || $forum['type'] != "f")


// Does the thread belong to a valid forum?
$forum = get_forum($fid);
if(!$forum || $forum['type'] != "f")

{

{

	error($lang->error_invalidforum);
}

$threadnoteslink = '';
if(is_moderator($fid, "canmanagethreads") && !empty($thread['notes']))

	error($lang->error_invalidforum);
}

$threadnoteslink = '';
if(is_moderator($fid, "canmanagethreads") && !empty($thread['notes']))

{

{

	eval('$threadnoteslink = "'.$templates->get('showthread_threadnoteslink').'";');
}


	eval('$threadnoteslink = "'.$templates->get('showthread_threadnoteslink').'";');
}


Zeile 214Zeile 227
	{
$cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
if($thread['lastpost'] > $cutoff)

	{
$cutoff = TIME_NOW-$mybb->settings['threadreadcut']*60*60*24;
if($thread['lastpost'] > $cutoff)

		{

		{

			if($thread_read)
{
$lastread = $thread_read;

			if($thread_read)
{
$lastread = $thread_read;

Zeile 249Zeile 262
	$options = array(
"limit_start" => 0,
"limit" => 1,

	$options = array(
"limit_start" => 0,
"limit" => 1,

		"order_by" => "dateline",
"order_dir" => "asc"

		"order_by" => "dateline, pid",


	);

$lastread = (int)$lastread;
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}' {$visibleonly}", $options);
$newpost = $db->fetch_array($query);

	);

$lastread = (int)$lastread;
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline > '{$lastread}' {$visibleonly}", $options);
$newpost = $db->fetch_array($query);





	if($newpost['pid'] && $lastread)
{
$highlight = '';

	if($newpost['pid'] && $lastread)
{
$highlight = '';

Zeile 277Zeile 289
	{
// show them to the last post
$mybb->input['action'] = "lastpost";

	{
// show them to the last post
$mybb->input['action'] = "lastpost";

	}
}

	}
}


// Jump to the last post.
if($mybb->input['action'] == "lastpost")


// Jump to the last post.
if($mybb->input['action'] == "lastpost")

Zeile 289Zeile 301
			SELECT p.pid
FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON(p.tid=t.tid)

			SELECT p.pid
FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON(p.tid=t.tid)

			WHERE t.fid='".$thread['fid']."' AND t.closed NOT LIKE 'moved|%' {$visibleonly2}
ORDER BY p.dateline DESC

			WHERE t.fid='".$thread['fid']."' AND t.closed NOT LIKE 'moved|%' {$visibleonly_p_t}
ORDER BY p.dateline DESC, p.pid DESC

			LIMIT 1
");
$pid = $db->fetch_field($query, "pid");

			LIMIT 1
");
$pid = $db->fetch_field($query, "pid");

Zeile 298Zeile 310
	else
{
$options = array(

	else
{
$options = array(

			'order_by' => 'dateline',
'order_dir' => 'desc',

			'order_by' => 'dateline DESC, pid DESC',


			'limit_start' => 0,
'limit' => 1
);

			'limit_start' => 0,
'limit' => 1
);

Zeile 329Zeile 340
	$options = array(
"limit_start" => 0,
"limit" => 1,

	$options = array(
"limit_start" => 0,
"limit" => 1,

		"order_by" => "dateline",
"order_dir" => "desc"

		"order_by" => "dateline DESC, pid DESC",


	);
$query = $db->simple_select('posts', 'pid', "tid='{$nextthread['tid']}'", $options);


	);
$query = $db->simple_select('posts', 'pid', "tid='{$nextthread['tid']}'", $options);


Zeile 360Zeile 370
	$options = array(
"limit_start" => 0,
"limit" => 1,

	$options = array(
"limit_start" => 0,
"limit" => 1,

		"order_by" => "dateline",
"order_dir" => "desc"

		"order_by" => "dateline DESC, pid DESC",


	);
$query = $db->simple_select("posts", "pid", "tid='".$nextthread['tid']."'", $options);


	);
$query = $db->simple_select("posts", "pid", "tid='".$nextthread['tid']."'", $options);


Zeile 534Zeile 543
				"filter_badwords" => 1
);


				"filter_badwords" => 1
);


			if($mybb->user['showimages'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestimages'] != 1 && $mybb->user['uid'] == 0)

			if($mybb->user['uid'] != 0 && $mybb->user['showimages'] != 1 || $mybb->settings['guestimages'] != 1 && $mybb->user['uid'] == 0)

			{
$parser_options['allow_imgcode'] = 0;
}


			{
$parser_options['allow_imgcode'] = 0;
}


			if($mybb->user['showvideos'] != 1 && $mybb->user['uid'] != 0 || $mybb->settings['guestvideos'] != 1 && $mybb->user['uid'] == 0)

			if($mybb->user['uid'] != 0 && $mybb->user['showvideos'] != 1 || $mybb->settings['guestvideos'] != 1 && $mybb->user['uid'] == 0)

			{
$parser_options['allow_videocode'] = 0;
}

			{
$parser_options['allow_videocode'] = 0;
}

Zeile 552Zeile 561
			// Mark the option the user voted for.
if(!empty($votedfor[$number]))
{

			// Mark the option the user voted for.
if(!empty($votedfor[$number]))
{

				$optionbg = "trow2";

				$optionbg = "trow2 poll_votedfor";

				$votestar = "*";
}
else

				$votestar = "*";
}
else

Zeile 608Zeile 617
		// Decide what poll status to show depending on the status of the poll and whether or not the user voted already.
if(isset($alreadyvoted) || isset($showresults) || isset($nopermission))
{

		// Decide what poll status to show depending on the status of the poll and whether or not the user voted already.
if(isset($alreadyvoted) || isset($showresults) || isset($nopermission))
{

			if($alreadyvoted)



			$undovote = '';

if(isset($alreadyvoted))

			{
$pollstatus = $lang->already_voted;


			{
$pollstatus = $lang->already_voted;


				$undovote = '';

 
				if($mybb->usergroup['canundovotes'] == 1)
{
eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";");
}
}

				if($mybb->usergroup['canundovotes'] == 1)
{
eval("\$undovote = \"".$templates->get("showthread_poll_undovote")."\";");
}
}

			elseif($nopermission)

			elseif(isset($nopermission))

			{
$pollstatus = $lang->no_voting_permission;
}

			{
$pollstatus = $lang->no_voting_permission;
}

Zeile 678Zeile 688
		}

// Show the appropriate reply button if this thread is open or closed

		}

// Show the appropriate reply button if this thread is open or closed

		if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && ($thread['uid'] == $mybb->user['uid'] || $forumpermissions['canonlyreplyownthreads'] != 1))

		if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && ($thread['uid'] == $mybb->user['uid'] || empty($forumpermissions['canonlyreplyownthreads'])))

		{
eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
}

		{
eval("\$newreply = \"".$templates->get("showthread_newreply")."\";");
}

Zeile 691Zeile 701
	// Create the admin tools dropdown box.
if($ismod == true)
{

	// Create the admin tools dropdown box.
if($ismod == true)
{

		$closelinkch = $stickch = '';

		$closeoption = $closelinkch = $stickch = '';


if($thread['closed'] == 1)
{


if($thread['closed'] == 1)
{

Zeile 725Zeile 735
	}

// Increment the thread view.

	}

// Increment the thread view.

	if($mybb->settings['delayedthreadviews'] == 1)













	if(
(
$mybb->user['uid'] == 0 &&
(
($session->is_spider == true && $mybb->settings['threadviews_countspiders'] == 1) ||
($session->is_spider == false && $mybb->settings['threadviews_countguests'] == 1)
)
) ||
(
$mybb->user['uid'] != 0 &&
($mybb->settings['threadviews_countthreadauthor'] == 1 || $mybb->user['uid'] != $thread['uid'])
)
)

	{

	{

		$db->shutdown_query("INSERT INTO ".TABLE_PREFIX."threadviews (tid) VALUES('{$tid}')");
}
else
{
$db->shutdown_query("UPDATE ".TABLE_PREFIX."threads SET views=views+1 WHERE tid='{$tid}'");
}
++$thread['views'];




		if($mybb->settings['delayedthreadviews'] == 1)
{
$db->shutdown_query("INSERT INTO ".TABLE_PREFIX."threadviews (tid) VALUES('{$tid}')");
}
else
{
$db->shutdown_query("UPDATE ".TABLE_PREFIX."threads SET views=views+1 WHERE tid='{$tid}'");
}
++$thread['views'];
}


// Work out the thread rating for this thread.


// Work out the thread rating for this thread.

	$rating = '';

	$rating = $ratethread = '';

	if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0)
{
$rated = 0;

	if($mybb->settings['allowthreadratings'] != 0 && $forum['allowtratings'] != 0)
{
$rated = 0;

Zeile 770Zeile 795

$ratingvotesav = $lang->sprintf($lang->rating_average, $thread['numratings'], $thread['averagerating']);
eval("\$ratethread = \"".$templates->get("showthread_ratethread")."\";");


$ratingvotesav = $lang->sprintf($lang->rating_average, $thread['numratings'], $thread['averagerating']);
eval("\$ratethread = \"".$templates->get("showthread_ratethread")."\";");

	}
// Work out if we are showing unapproved posts as well (if the user is a moderator etc.)
if($ismod && is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == false)
{
$visible = "AND p.visible IN (-1,1)";
}
elseif($ismod && is_moderator($fid, "canviewdeleted") == false && is_moderator($fid, "canviewunapprove") == true)
{
$visible = "AND p.visible IN (0,1)";
}
elseif($ismod && is_moderator($fid, "canviewdeleted") == true && is_moderator($fid, "canviewunapprove") == true)
{
$visible = "AND p.visible IN (-1,0,1)";
}
elseif($forumpermissions['canviewdeletionnotice'] != 0 && $ismod == false)
{
$visible = "AND p.visible IN (-1,1)";
}
else
{
$visible = "AND p.visible='1'";

 
	}

// Can this user perform searches? If so, we can show them the "Search thread" form

	}

// Can this user perform searches? If so, we can show them the "Search thread" form

Zeile 807Zeile 811
		foreach($ignore_list as $uid)
{
$ignored_users[$uid] = 1;

		foreach($ignore_list as $uid)
{
$ignored_users[$uid] = 1;

		}
}

// Fetch profile fields to display on postbit
$pfcache = $cache->read('profilefields');

if(is_array($pfcache))
{
foreach($pfcache as $profilefield)
{
if($profilefield['postbit'] != 1)
{
continue;
}

$profile_fields[$profilefield['fid']] = $profilefield;

 
		}
}


		}
}


Zeile 850Zeile 838
	$threadexbox = '';
if($mybb->get_input('mode') == 'threaded')
{

	$threadexbox = '';
if($mybb->get_input('mode') == 'threaded')
{

 
		$thread_toggle = 'linear';

		$isfirst = 1;

// Are we linked to a specific pid?

		$isfirst = 1;

// Are we linked to a specific pid?

Zeile 859Zeile 848
		}
else
{

		}
else
{

			$where = " ORDER BY dateline LIMIT 0, 1";

			$where = " ORDER BY dateline, pid LIMIT 0, 1";

		}
$query = $db->query("

		}
$query = $db->query("

			SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername

			SELECT u.*, u.username AS userusername, p.*, f.*, r.reporters, eu.username AS editusername

			FROM ".TABLE_PREFIX."posts p

			FROM ".TABLE_PREFIX."posts p

 
			LEFT JOIN ".TABLE_PREFIX."reportedcontent r ON (r.id=p.pid AND r.type='post' AND r.reportstatus != 1)

			LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)

			LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)

			WHERE p.tid='$tid' $visible $where

			WHERE p.tid='$tid' $visibleonly_p $where

		");
$showpost = $db->fetch_array($query);


		");
$showpost = $db->fetch_array($query);


Zeile 891Zeile 881
			while($attachment = $db->fetch_array($query))
{
$attachcache[$attachment['pid']][$attachment['aid']] = $attachment;

			while($attachment = $db->fetch_array($query))
{
$attachcache[$attachment['pid']][$attachment['aid']] = $attachment;

			}
}



			}
}

$multipage = '';





        // Build the threaded post display tree.
$query = $db->query("
SELECT p.username, p.uid, p.pid, p.replyto, p.subject, p.dateline
FROM ".TABLE_PREFIX."posts p
WHERE p.tid='$tid'
$visible
ORDER BY p.dateline
");
if(!is_array($postsdone))
{
$postsdone = array();
}
while($post = $db->fetch_array($query))
{
if(!$postsdone[$post['pid']])
{
if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid']))
{

		// Build the threaded post display tree.
$query = $db->query("
SELECT p.username, p.uid, p.pid, p.replyto, p.subject, p.dateline
FROM ".TABLE_PREFIX."posts p
WHERE p.tid='$tid'
$visibleonly_p
ORDER BY p.dateline, p.pid
");
$postsdone = array();
while($post = $db->fetch_array($query))
{
if(empty($postsdone[$post['pid']]))
{
if($post['pid'] == $mybb->input['pid'] || ($isfirst && !$mybb->input['pid']))
{




					$postcounter = count($postsdone);

					$postcounter = count($postsdone);

                    $isfirst = 0;
}
$tree[$post['replyto']][$post['pid']] = $post;
$postsdone[$post['pid']] = 1;
}
}

					$isfirst = 0;
}
$tree[$post['replyto']][$post['pid']] = $post;
$postsdone[$post['pid']] = 1;
}
}


$threadedbits = buildtree();
$posts = build_postbit($showpost);


$threadedbits = buildtree();
$posts = build_postbit($showpost);

Zeile 927Zeile 916
	}
else // Linear display
{

	}
else // Linear display
{

 
		$thread_toggle = 'threaded';

		$threadexbox = '';
if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
{

		$threadexbox = '';
if(!$mybb->settings['postsperpage'] || (int)$mybb->settings['postsperpage'] < 1)
{

Zeile 944Zeile 934
		if(!empty($mybb->input['pid']))
{
$post = get_post($mybb->input['pid']);

		if(!empty($mybb->input['pid']))
{
$post = get_post($mybb->input['pid']);

			if(empty($post) || ($post['visible'] == 0 && !is_moderator($post['fid'], 'canviewunapprove')) || ($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted') && $forumpermissions['canviewdeletionnotice'] == 0))










			if(
empty($post) ||
(
$post['visible'] == 0 && !(
is_moderator($post['fid'], 'canviewunapprove') ||
($mybb->user['uid'] && $post['uid'] == $mybb->user['uid'] && $mybb->settings['showownunapproved'])
)
) ||
($post['visible'] == -1 && !is_moderator($post['fid'], 'canviewdeleted') && $forumpermissions['canviewdeletionnotice'] == 0)
)

			{
$footer .= '<script type="text/javascript">$(function() { $.jGrowl(\''.$lang->error_invalidpost.'\', {theme: \'jgrowl_error\'}); });</script>';
}

			{
$footer .= '<script type="text/javascript">$(function() { $.jGrowl(\''.$lang->error_invalidpost.'\', {theme: \'jgrowl_error\'}); });</script>';
}

Zeile 954Zeile 953
					SELECT COUNT(p.dateline) AS count FROM ".TABLE_PREFIX."posts p
WHERE p.tid = '{$tid}'
AND p.dateline <= '{$post['dateline']}'

					SELECT COUNT(p.dateline) AS count FROM ".TABLE_PREFIX."posts p
WHERE p.tid = '{$tid}'
AND p.dateline <= '{$post['dateline']}'

					{$visible}

					{$visibleonly_p}

				");
$result = $db->fetch_field($query, "count");
if(($result % $perpage) == 0)

				");
$result = $db->fetch_field($query, "count");
if(($result % $perpage) == 0)

Zeile 969Zeile 968
		}

// Recount replies if user is a moderator or can see the deletion notice to take into account unapproved/deleted posts.

		}

// Recount replies if user is a moderator or can see the deletion notice to take into account unapproved/deleted posts.

		if($ismod || $forumpermissions['canviewdeletionnotice'] != 0)

		if($visible_states != array("1"))

		{

		{

			$query = $db->simple_select("posts p", "COUNT(*) AS replies", "p.tid='$tid' $visible");

 
			$cached_replies = $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts'];

			$cached_replies = $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts'];

 

$query = $db->simple_select("posts p", "COUNT(*) AS replies", "p.tid='$tid' $visibleonly_p");

			$thread['replies'] = $db->fetch_field($query, 'replies')-1;


			$thread['replies'] = $db->fetch_field($query, 'replies')-1;


			// The counters are wrong? Rebuild them
// This doesn't cover all cases however it is a good addition to the manual rebuild function
if($thread['replies'] != $cached_replies)

			if(in_array('-1', $visible_states) && in_array('0', $visible_states))



			{

			{

				require_once MYBB_ROOT."/inc/functions_rebuild.php";
rebuild_thread_counters($thread['tid']);






				// The counters are wrong? Rebuild them
// This doesn't cover all cases however it is a good addition to the manual rebuild function
if($thread['replies'] != $cached_replies)
{
require_once MYBB_ROOT."/inc/functions_rebuild.php";
rebuild_thread_counters($thread['tid']);
}

			}

			}

		}
elseif($forumpermissions['canviewdeletionnotice'] != 0)
{
$thread['replies'] += $thread['deletedposts'];
}

		}






$postcount = (int)$thread['replies']+1;
$pages = $postcount / $perpage;


$postcount = (int)$thread['replies']+1;
$pages = $postcount / $perpage;

Zeile 998Zeile 997
		}

if($page > $pages || $page <= 0)

		}

if($page > $pages || $page <= 0)

		{
$page = 1;
}

		{
$page = 1;
}


if($page)


if($page)

		{

		{

			$start = ($page-1) * $perpage;

			$start = ($page-1) * $perpage;

		}
else

		}
else

		{
$start = 0;
$page = 1;

		{
$start = 0;
$page = 1;

Zeile 1014Zeile 1013
		$upper = $start+$perpage;

// Work out if we have terms to highlight

		$upper = $start+$perpage;

// Work out if we have terms to highlight

        $highlight = "";
$threadmode = "";
if($mybb->seo_support == true)
{
if($mybb->get_input('highlight'))
{
$highlight = "?highlight=".urlencode($mybb->get_input('highlight'));
}

		$highlight = "";
$threadmode = "";
if($mybb->seo_support == true)
{
if($mybb->get_input('highlight'))
{
$highlight = "?highlight=".urlencode($mybb->get_input('highlight'));
}


if($defaultmode != "linear")


if($defaultmode != "linear")

			{
if($mybb->get_input('highlight'))
{
$threadmode = "&amp;mode=linear";
}
else
{
$threadmode = "?mode=linear";
}

			{
if($mybb->get_input('highlight'))
{
$threadmode = "&amp;mode=linear";
}
else
{
$threadmode = "?mode=linear";
}

			}

			}

        }
else
{

		}
else
{

			if(!empty($mybb->input['highlight']))
{
if(is_array($mybb->input['highlight']))

			if(!empty($mybb->input['highlight']))
{
if(is_array($mybb->input['highlight']))

				{

				{

					foreach($mybb->input['highlight'] as $highlight_word)
{
$highlight .= "&amp;highlight[]=".urlencode($highlight_word);
}

					foreach($mybb->input['highlight'] as $highlight_word)
{
$highlight .= "&amp;highlight[]=".urlencode($highlight_word);
}

				}

				}

				else
{
$highlight = "&amp;highlight=".urlencode($mybb->get_input('highlight'));
}
}

				else
{
$highlight = "&amp;highlight=".urlencode($mybb->get_input('highlight'));
}
}


if($defaultmode != "linear")
{
$threadmode = "&amp;mode=linear";
}
}

$multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode));

// Allow originator to see own unapproved posts
if($mybb->user['uid'] && $mybb->settings['showownunapproved'])
{
$visible .= " OR (p.tid='$tid' AND p.visible='0' AND p.uid=".$mybb->user['uid'].")";


if($defaultmode != "linear")
{
$threadmode = "&amp;mode=linear";
}









		}

		}

 

$multipage = multipage($postcount, $perpage, $page, str_replace("{tid}", $tid, THREAD_URL_PAGED.$highlight.$threadmode));


// Lets get the pids of the posts on this page.
$pids = "";
$comma = '';


// Lets get the pids of the posts on this page.
$pids = "";
$comma = '';

		$query = $db->simple_select("posts p", "p.pid", "p.tid='$tid' $visible", array('order_by' => 'p.dateline', 'limit_start' => $start, 'limit' => $perpage));

		$query = $db->simple_select("posts p", "p.pid", "p.tid='$tid' $visibleonly_p", array('order_by' => 'p.dateline, p.pid', 'limit_start' => $start, 'limit' => $perpage));

		while($getid = $db->fetch_array($query))

		while($getid = $db->fetch_array($query))

		{

		{

			// Set the ID of the first post on page to $pid if it doesn't hold any value
// to allow this value to be used for Thread Mode/Linear Mode links
// and ensure the user lands on the correct page after changing view mode

			// Set the ID of the first post on page to $pid if it doesn't hold any value
// to allow this value to be used for Thread Mode/Linear Mode links
// and ensure the user lands on the correct page after changing view mode

Zeile 1107Zeile 1100
		// Get the actual posts from the database here.
$posts = '';
$query = $db->query("

		// Get the actual posts from the database here.
$posts = '';
$query = $db->query("

			SELECT u.*, u.username AS userusername, p.*, f.*, eu.username AS editusername

			SELECT u.*, u.username AS userusername, p.*, f.*, r.reporters, eu.username AS editusername

			FROM ".TABLE_PREFIX."posts p

			FROM ".TABLE_PREFIX."posts p

 
			LEFT JOIN ".TABLE_PREFIX."reportedcontent r ON (r.id=p.pid AND r.type='post' AND r.reportstatus != 1)

			LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)
WHERE $pids

			LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
LEFT JOIN ".TABLE_PREFIX."userfields f ON (f.ufid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users eu ON (eu.uid=p.edituid)
WHERE $pids

			ORDER BY p.dateline

			ORDER BY p.dateline, p.pid

		");
while($post = $db->fetch_array($query))
{

		");
while($post = $db->fetch_array($query))
{

Zeile 1126Zeile 1120
		}
$plugins->run_hooks("showthread_linear");
}

		}
$plugins->run_hooks("showthread_linear");
}

 
	$lang->thread_toggle = $lang->{$thread_toggle};


// Show the similar threads table if wanted.
$similarthreads = '';


// Show the similar threads table if wanted.
$similarthreads = '';

Zeile 1174Zeile 1169
				$icon['path'] = htmlspecialchars_uni($icon['path']);
$icon['name'] = htmlspecialchars_uni($icon['name']);
eval("\$icon = \"".$templates->get("forumdisplay_thread_icon")."\";");

				$icon['path'] = htmlspecialchars_uni($icon['path']);
$icon['name'] = htmlspecialchars_uni($icon['name']);
eval("\$icon = \"".$templates->get("forumdisplay_thread_icon")."\";");

			}

			}

			else
{
$icon = "&nbsp;";

			else
{
$icon = "&nbsp;";

Zeile 1182Zeile 1177
			if(!$similar_thread['username'])
{
$similar_thread['username'] = $similar_thread['profilelink'] = htmlspecialchars_uni($similar_thread['threadusername']);

			if(!$similar_thread['username'])
{
$similar_thread['username'] = $similar_thread['profilelink'] = htmlspecialchars_uni($similar_thread['threadusername']);

			}

			}

			else

			else

			{

			{

				$similar_thread['username'] = htmlspecialchars_uni($similar_thread['username']);
$similar_thread['profilelink'] = build_profile_link($similar_thread['username'], $similar_thread['uid']);
}

				$similar_thread['username'] = htmlspecialchars_uni($similar_thread['username']);
$similar_thread['profilelink'] = build_profile_link($similar_thread['username'], $similar_thread['uid']);
}

Zeile 1194Zeile 1189
			{
$prefix = build_prefixes($similar_thread['prefix']);
if(!empty($prefix))

			{
$prefix = build_prefixes($similar_thread['prefix']);
if(!empty($prefix))

				{

				{

					$similar_thread['threadprefix'] = $prefix['displaystyle'].'&nbsp;';
}

					$similar_thread['threadprefix'] = $prefix['displaystyle'].'&nbsp;';
}

 
			}
else
{
$similar_thread['threadprefix'] = '';

			}

$similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']);

			}

$similar_thread['subject'] = $parser->parse_badwords($similar_thread['subject']);

Zeile 1229Zeile 1228

// Decide whether or not to show quick reply.
$quickreply = '';


// Decide whether or not to show quick reply.
$quickreply = '';

	if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0 && ($thread['uid'] == $mybb->user['uid'] || $forumpermissions['canonlyreplyownthreads'] != 1))

	if($forumpermissions['canpostreplys'] != 0 && $mybb->user['suspendposting'] != 1 && ($thread['closed'] != 1 || is_moderator($fid, "canpostclosedthreads")) && $mybb->settings['quickreply'] != 0 && $mybb->user['showquickreply'] != '0' && $forum['open'] != 0 && ($thread['uid'] == $mybb->user['uid'] || empty($forumpermissions['canonlyreplyownthreads'])))

	{
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("order_by" => "pid", "order_dir" => "desc", "limit" => 1));
$last_pid = $db->fetch_field($query, "pid");

	{
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("order_by" => "pid", "order_dir" => "desc", "limit" => 1));
$last_pid = $db->fetch_field($query, "pid");

Zeile 1256Zeile 1255
		// Hide signature option if no permission
$option_signature = '';
if($mybb->usergroup['canusesig'] && !$mybb->user['suspendsignature'])

		// Hide signature option if no permission
$option_signature = '';
if($mybb->usergroup['canusesig'] && !$mybb->user['suspendsignature'])

		{

		{

			eval("\$option_signature = \"".$templates->get('showthread_quickreply_options_signature')."\";");
}


			eval("\$option_signature = \"".$templates->get('showthread_quickreply_options_signature')."\";");
}


Zeile 1287Zeile 1286
			}
}


			}
}


	    	$posthash = md5($mybb->user['uid'].random_str());
$expaltext = (in_array("quickreply", $collapse)) ? "[+]" : "[-]";















			$posthash = md5($mybb->user['uid'].random_str());

if(!isset($collapsedthead['quickreply']))
{
$collapsedthead['quickreply'] = '';
}
if(!isset($collapsedimg['quickreply']))
{
$collapsedimg['quickreply'] = '';
}
if(!isset($collapsed['quickreply_e']))
{
$collapsed['quickreply_e'] = '';
}

$expaltext = (in_array("quickreply", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;

		eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";");
}

$moderationoptions = '';

		eval("\$quickreply = \"".$templates->get("showthread_quickreply")."\";");
}

$moderationoptions = '';

 
	$threadnotesbox = $viewnotes = '';


// If the user is a moderator, show the moderation tools.
if($ismod)
{
$customthreadtools = $customposttools = $standardthreadtools = $standardposttools = '';



// If the user is a moderator, show the moderation tools.
if($ismod)
{
$customthreadtools = $customposttools = $standardthreadtools = $standardposttools = '';


		$threadnotesbox = $viewnotes = '';

 
		if(!empty($thread['notes']))
{
$thread['notes'] = nl2br(htmlspecialchars_uni($thread['notes']));

		if(!empty($thread['notes']))
{
$thread['notes'] = nl2br(htmlspecialchars_uni($thread['notes']));

Zeile 1310Zeile 1323
				$thread['notes'] = my_substr($thread['notes'], 0, 200)."... {$viewnotes}";
}


				$thread['notes'] = my_substr($thread['notes'], 0, 200)."... {$viewnotes}";
}


			$expaltext = (in_array("threadnotes", $collapse)) ? "[+]" : "[-]";

			$expaltext = (in_array("threadnotes", $collapse)) ? $lang->expcol_expand : $lang->expcol_collapse;

			eval("\$threadnotesbox = \"".$templates->get("showthread_threadnotes")."\";");
}


			eval("\$threadnotesbox = \"".$templates->get("showthread_threadnotes")."\";");
}


Zeile 1319Zeile 1332
			$gids = explode(',', $mybb->user['additionalgroups']);
$gids[] = $mybb->user['usergroup'];
$gids = array_filter(array_unique($gids));

			$gids = explode(',', $mybb->user['additionalgroups']);
$gids[] = $mybb->user['usergroup'];
$gids = array_filter(array_unique($gids));

 
			$gidswhere = '';

			switch($db->type)
{
case "pgsql":

			switch($db->type)
{
case "pgsql":

Zeile 1341Zeile 1355
			}

while($tool = $db->fetch_array($query))

			}

while($tool = $db->fetch_array($query))

			{

			{

				$tool['name'] = htmlspecialchars_uni($tool['name']);
if($tool['type'] == 'p')

				$tool['name'] = htmlspecialchars_uni($tool['name']);
if($tool['type'] == 'p')

				{

				{

					eval("\$customposttools .= \"".$templates->get("showthread_inlinemoderation_custom_tool")."\";");

					eval("\$customposttools .= \"".$templates->get("showthread_inlinemoderation_custom_tool")."\";");

				}

				}

				else
{
eval("\$customthreadtools .= \"".$templates->get("showthread_moderationoptions_custom_tool")."\";");
}

				else
{
eval("\$customthreadtools .= \"".$templates->get("showthread_moderationoptions_custom_tool")."\";");
}

			}


			}


			// Build inline moderation dropdown
if(!empty($customposttools))
{
eval("\$customposttools = \"".$templates->get("showthread_inlinemoderation_custom")."\";");

			// Build inline moderation dropdown
if(!empty($customposttools))
{
eval("\$customposttools = \"".$templates->get("showthread_inlinemoderation_custom")."\";");

			}
}

$inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapprove = '';


			}
}

$inlinemodsoftdelete = $inlinemodrestore = $inlinemoddelete = $inlinemodmanage = $inlinemodapprove = '';


		if(is_moderator($forum['fid'], "cansoftdeleteposts"))
{
eval("\$inlinemodsoftdelete = \"".$templates->get("showthread_inlinemoderation_softdelete")."\";");

		if(is_moderator($forum['fid'], "cansoftdeleteposts"))
{
eval("\$inlinemodsoftdelete = \"".$templates->get("showthread_inlinemoderation_softdelete")."\";");

Zeile 1402Zeile 1416
		if(!empty($customthreadtools))
{
eval("\$customthreadtools = \"".$templates->get("showthread_moderationoptions_custom")."\";");

		if(!empty($customthreadtools))
{
eval("\$customthreadtools = \"".$templates->get("showthread_moderationoptions_custom")."\";");

		}

		}


$openclosethread = $stickunstickthread = $deletethread = $threadnotes = $managethread = $adminpolloptions = $approveunapprovethread = $softdeletethread = '';


$openclosethread = $stickunstickthread = $deletethread = $threadnotes = $managethread = $adminpolloptions = $approveunapprovethread = $softdeletethread = '';





		if(is_moderator($forum['fid'], "canopenclosethreads"))

		if(is_moderator($forum['fid'], "canopenclosethreads"))

		{

		{

			eval("\$openclosethread = \"".$templates->get("showthread_moderationoptions_openclose")."\";");

			eval("\$openclosethread = \"".$templates->get("showthread_moderationoptions_openclose")."\";");

		}


		}


		if(is_moderator($forum['fid'], "canstickunstickthreads"))

		if(is_moderator($forum['fid'], "canstickunstickthreads"))

		{

		{

			eval("\$stickunstickthread = \"".$templates->get("showthread_moderationoptions_stickunstick")."\";");

			eval("\$stickunstickthread = \"".$templates->get("showthread_moderationoptions_stickunstick")."\";");

		}


		}


		if(is_moderator($forum['fid'], "candeletethreads"))
{
eval("\$deletethread = \"".$templates->get("showthread_moderationoptions_delete")."\";");
}

if(is_moderator($forum['fid'], "canmanagethreads"))

		if(is_moderator($forum['fid'], "candeletethreads"))
{
eval("\$deletethread = \"".$templates->get("showthread_moderationoptions_delete")."\";");
}

if(is_moderator($forum['fid'], "canmanagethreads"))

		{

		{

			eval("\$threadnotes = \"".$templates->get("showthread_moderationoptions_threadnotes")."\";");
eval("\$managethread = \"".$templates->get("showthread_moderationoptions_manage")."\";");

			eval("\$threadnotes = \"".$templates->get("showthread_moderationoptions_threadnotes")."\";");
eval("\$managethread = \"".$templates->get("showthread_moderationoptions_manage")."\";");

		}

		}


if($pollbox && is_moderator($forum['fid'], "canmanagepolls"))
{


if($pollbox && is_moderator($forum['fid'], "canmanagepolls"))
{

Zeile 1435Zeile 1449
		if(is_moderator($forum['fid'], "canapproveunapprovethreads"))
{
if($thread['visible'] == 0)

		if(is_moderator($forum['fid'], "canapproveunapprovethreads"))
{
if($thread['visible'] == 0)

			{

			{

				eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_approve")."\";");

				eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_approve")."\";");

			}

			}

			else
{
eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_unapprove")."\";");
}

			else
{
eval("\$approveunapprovethread = \"".$templates->get("showthread_moderationoptions_unapprove")."\";");
}

		}

		}


if(is_moderator($forum['fid'], "cansoftdeletethreads") && $thread['visible'] != -1)
{
eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_softdelete")."\";");
}
elseif(is_moderator($forum['fid'], "canrestorethreads") && $thread['visible'] == -1)


if(is_moderator($forum['fid'], "cansoftdeletethreads") && $thread['visible'] != -1)
{
eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_softdelete")."\";");
}
elseif(is_moderator($forum['fid'], "canrestorethreads") && $thread['visible'] == -1)

		{

		{

			eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_restore")."\";");

			eval("\$softdeletethread = \"".$templates->get("showthread_moderationoptions_restore")."\";");

		}

		}


if(!empty($openclosethread) || !empty($stickunstickthread) || !empty($deletethread) || !empty($managethread) || !empty($adminpolloptions) || !empty($approveunapprovethread) || !empty($softdeletethread))


if(!empty($openclosethread) || !empty($stickunstickthread) || !empty($deletethread) || !empty($managethread) || !empty($adminpolloptions) || !empty($approveunapprovethread) || !empty($softdeletethread))

		{

		{

			eval("\$standardthreadtools = \"".$templates->get("showthread_moderationoptions_standard")."\";");

			eval("\$standardthreadtools = \"".$templates->get("showthread_moderationoptions_standard")."\";");

		}

		}


// Only show mod menu if there's any options to show
if(!empty($standardthreadtools) || !empty($customthreadtools))
{
eval("\$moderationoptions = \"".$templates->get("showthread_moderationoptions")."\";");


// Only show mod menu if there's any options to show
if(!empty($standardthreadtools) || !empty($customthreadtools))
{
eval("\$moderationoptions = \"".$templates->get("showthread_moderationoptions")."\";");

		}
}

		}
}


eval("\$printthread = \"".$templates->get("showthread_printthread")."\";");



eval("\$printthread = \"".$templates->get("showthread_printthread")."\";");


Zeile 1490Zeile 1504
	{
$query = $db->simple_select("threadsubscriptions", "tid", "tid='".(int)$tid."' AND uid='".(int)$mybb->user['uid']."'", array('limit' => 1));


	{
$query = $db->simple_select("threadsubscriptions", "tid", "tid='".(int)$tid."' AND uid='".(int)$mybb->user['uid']."'", array('limit' => 1));


		if($db->fetch_field($query, 'tid'))

		if($db->num_rows($query) > 0)

		{
$add_remove_subscription = 'remove';
$add_remove_subscription_text = $lang->unsubscribe_thread;
}

eval("\$addremovesubscription = \"".$templates->get("showthread_subscription")."\";");

		{
$add_remove_subscription = 'remove';
$add_remove_subscription_text = $lang->unsubscribe_thread;
}

eval("\$addremovesubscription = \"".$templates->get("showthread_subscription")."\";");

 
	}
else
{
$addremovesubscription = '';

	}

$classic_header = '';

	}

$classic_header = '';

Zeile 1504Zeile 1522
	{
eval("\$classic_header = \"".$templates->get("showthread_classic_header")."\";");
}

	{
eval("\$classic_header = \"".$templates->get("showthread_classic_header")."\";");
}





	// Get users viewing this thread
if($mybb->settings['browsingthisthread'] != 0)
{
$timecut = TIME_NOW - $mybb->settings['wolcutoff'];

	// Get users viewing this thread
if($mybb->settings['browsingthisthread'] != 0)
{
$timecut = TIME_NOW - $mybb->settings['wolcutoff'];





		$comma = '';
$guestcount = 0;
$membercount = 0;
$inviscount = 0;
$onlinemembers = '';
$doneusers = array();

		$comma = '';
$guestcount = 0;
$membercount = 0;
$inviscount = 0;
$onlinemembers = '';
$doneusers = array();

 

$query = $db->simple_select("sessions", "COUNT(DISTINCT ip) AS guestcount", "uid = 0 AND time > $timecut AND location2 = $tid AND nopermission != 1");
$guestcount = $db->fetch_field($query, 'guestcount');


$query = $db->query("


$query = $db->query("

			SELECT s.ip, s.uid, s.time, u.username, u.invisible, u.usergroup, u.displaygroup
FROM ".TABLE_PREFIX."sessions s
LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid)
WHERE s.time > '$timecut' AND location2='$tid' AND nopermission != 1



			SELECT
s.ip, s.uid, s.time, u.username, u.invisible, u.usergroup, u.displaygroup
FROM
".TABLE_PREFIX."sessions s
LEFT JOIN ".TABLE_PREFIX."users u ON (s.uid=u.uid)
WHERE s.uid != 0 AND s.time > '$timecut' AND location2='$tid' AND nopermission != 1

			ORDER BY u.username ASC, s.time DESC
");

while($user = $db->fetch_array($query))
{

			ORDER BY u.username ASC, s.time DESC
");

while($user = $db->fetch_array($query))
{

			if($user['uid'] == 0)
{
++$guestcount;
}
else if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])

			if(empty($doneusers[$user['uid']]) || $doneusers[$user['uid']] < $user['time'])





			{
++$membercount;
$doneusers[$user['uid']] = $user['time'];

$invisiblemark = '';

			{
++$membercount;
$doneusers[$user['uid']] = $user['time'];

$invisiblemark = '';

				if($user['invisible'] == 1)

				if($user['invisible'] == 1 && $mybb->usergroup['canbeinvisible'] == 1)

				{
$invisiblemark = "*";
++$inviscount;

				{
$invisiblemark = "*";
++$inviscount;

Zeile 1569Zeile 1588
		}
if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1)
{

		}
if($inviscount && $mybb->usergroup['canviewwolinvis'] != 1)
{

			$invisonline = $lang->sprintf($lang->users_browsing_forum_invis, $inviscount);

			$invisonline = $lang->sprintf($lang->users_browsing_thread_invis, $inviscount);

		}

$onlinesep = '';

		}

$onlinesep = '';

Zeile 1587Zeile 1606
		eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";");
}


		eval("\$usersbrowsing = \"".$templates->get("showthread_usersbrowsing")."\";");
}


	if($thread['visible'] == -1 )


	$thread_deleted = 0;
if($thread['visible'] == -1)

	{
$thread_deleted = 1;
}

	{
$thread_deleted = 1;
}

Zeile 1637Zeile 1657
				eval("\$posts .= \"".$templates->get("showthread_threaded_bit")."\";");
}


				eval("\$posts .= \"".$templates->get("showthread_threaded_bit")."\";");
}


			if($tree[$post['pid']])

			if(!empty($tree[$post['pid']]))

			{
$posts .= buildtree($post['pid'], $indent);
}

			{
$posts .= buildtree($post['pid'], $indent);
}