Vergleich forumdisplay.php - 1.8.12 - 1.8.18

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 611Zeile 611

if($fpermissions['canviewthreads'] != 0)
{


if($fpermissions['canviewthreads'] != 0)
{

	// How many posts are there?
if(($datecut > 0 && $datecut != 9999) || isset($fpermissions['canonlyviewownthreads']) && $fpermissions['canonlyviewownthreads'] == 1)
{
$query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly $datecutsql $prefixsql");
$threadcount = $db->fetch_field($query, "threads");
}
else
{
$query = $db->simple_select("forums", "threads, unapprovedthreads, deletedthreads", "fid = '{$fid}'", array('limit' => 1));
$forum_threads = $db->fetch_array($query);
$threadcount = $forum_threads['threads'];
if($ismod == true)
{
$threadcount += $forum_threads['unapprovedthreads'] + $forum_threads['deletedthreads'];
}

// If we have 0 threads double check there aren't any "moved" threads
if($threadcount == 0)
{
$query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly", array('limit' => 1));
$threadcount = $db->fetch_field($query, "threads");
}
}

	// How many threads are there?
$query = $db->simple_select("threads", "COUNT(tid) AS threads", "fid = '$fid' $useronly $visibleonly $datecutsql $prefixsql");
$threadcount = $db->fetch_field($query, "threads");





















}

// How many pages are there?

}

// How many pages are there?

Zeile 943Zeile 923
	while($post = $db->fetch_array($query))
{
if(!empty($moved_threads[$post['tid']]))

	while($post = $db->fetch_array($query))
{
if(!empty($moved_threads[$post['tid']]))

		{

		{

			$post['tid'] = $moved_threads[$post['tid']];

			$post['tid'] = $moved_threads[$post['tid']];

		}

		}

		if($threadcache[$post['tid']])
{
$threadcache[$post['tid']]['doticon'] = 1;

		if($threadcache[$post['tid']])
{
$threadcache[$post['tid']]['doticon'] = 1;

		}
}
}


		}
}
}


// Read threads
if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && !empty($threadcache))
{

// Read threads
if($mybb->user['uid'] && $mybb->settings['threadreadcut'] > 0 && !empty($threadcache))
{

Zeile 982Zeile 962
	}
}
else

	}
}
else

{

{

	$forum_read = my_get_array_cookie("forumread", $fid);

if(isset($mybb->cookies['mybb']['readallforums']) && !$forum_read)

	$forum_read = my_get_array_cookie("forumread", $fid);

if(isset($mybb->cookies['mybb']['readallforums']) && !$forum_read)

Zeile 1012Zeile 992
		$moved = explode("|", $thread['closed']);

if($thread['visible'] == 0)

		$moved = explode("|", $thread['closed']);

if($thread['visible'] == 0)

		{

		{

			$bgcolor = "trow_shaded";

			$bgcolor = "trow_shaded";

		}

		}

		elseif($thread['visible'] == -1 && is_moderator($fid, "canviewdeleted"))

		elseif($thread['visible'] == -1 && is_moderator($fid, "canviewdeleted"))

		{

		{

			$bgcolor = "trow_shaded trow_deleted";

			$bgcolor = "trow_shaded trow_deleted";

		}

		}

		else
{
$bgcolor = alt_trow();

		else
{
$bgcolor = alt_trow();

		}


		}


		if($thread['sticky'] == 1)
{
$thread_type_class = " forumdisplay_sticky";

		if($thread['sticky'] == 1)
{
$thread_type_class = " forumdisplay_sticky";

Zeile 1039Zeile 1019
		$thread['author'] = $thread['uid'];
if(!$thread['username'])
{

		$thread['author'] = $thread['uid'];
if(!$thread['username'])
{

			$thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($thread['threadusername']);








			if(!$thread['threadusername'])
{
$thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($lang->guest);
}
else
{
$thread['username'] = $thread['profilelink'] = htmlspecialchars_uni($thread['threadusername']);
}

		}
else
{

		}
else
{

Zeile 1104Zeile 1091
				$thread['averagerating'] = (float)round($thread['averagerating'], 2);
$thread['width'] = (int)round($thread['averagerating'])*20;
$thread['numratings'] = (int)$thread['numratings'];

				$thread['averagerating'] = (float)round($thread['averagerating'], 2);
$thread['width'] = (int)round($thread['averagerating'])*20;
$thread['numratings'] = (int)$thread['numratings'];





				$not_rated = '';
if(!isset($thread['rated']) || empty($thread['rated']))
{

				$not_rated = '';
if(!isset($thread['rated']) || empty($thread['rated']))
{

Zeile 1113Zeile 1100

$ratingvotesav = $lang->sprintf($lang->rating_votes_average, $thread['numratings'], $thread['averagerating']);
eval("\$rating = \"".$templates->get("forumdisplay_thread_rating")."\";");


$ratingvotesav = $lang->sprintf($lang->rating_votes_average, $thread['numratings'], $thread['averagerating']);
eval("\$rating = \"".$templates->get("forumdisplay_thread_rating")."\";");

			}

			}

		}

$thread['pages'] = 0;

		}

$thread['pages'] = 0;

Zeile 1121Zeile 1108
		$threadpages = '';
$morelink = '';
$thread['posts'] = $thread['replies'] + 1;

		$threadpages = '';
$morelink = '';
$thread['posts'] = $thread['replies'] + 1;


if($thread['unapprovedposts'] > 0 && $ismod)











		if(is_moderator($fid, "canviewdeleted") == true || is_moderator($fid, "canviewunapprove") == true)
{
if(is_moderator($fid, "canviewdeleted") == true)
{
$thread['posts'] += $thread['deletedposts'];
}
if(is_moderator($fid, "canviewunapprove") == true)
{
$thread['posts'] += $thread['unapprovedposts'];
}
}
elseif($fpermissions['canviewdeletionnotice'] != 0)

		{

		{

			$thread['posts'] += $thread['unapprovedposts'] + $thread['deletedposts'];

			$thread['posts'] += $thread['deletedposts'];

		}

if($thread['posts'] > $mybb->settings['postsperpage'])

		}

if($thread['posts'] > $mybb->settings['postsperpage'])

Zeile 1160Zeile 1157

if($ismod)
{


if($ismod)
{

			if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|{$thread['tid']}|"))

			if(isset($mybb->cookies[$inlinecookie]) && my_strpos($mybb->cookies[$inlinecookie], "|{$thread['tid']}|") !== false)

			{
$inlinecheck = "checked=\"checked\"";
++$inlinecount;

			{
$inlinecheck = "checked=\"checked\"";
++$inlinecount;

Zeile 1247Zeile 1244

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


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

			$folder .= "lock";
$folder_label .= $lang->icon_lock;

			$folder .= "close";
$folder_label .= $lang->icon_close;

		}

if($moved[0] == "moved")

		}

if($moved[0] == "moved")

Zeile 1268Zeile 1265
			$inline_edit_class = "subject_editable";
}


			$inline_edit_class = "subject_editable";
}


		$lastposter = htmlspecialchars_uni($thread['lastposter']);



		$lastposteruid = $thread['lastposteruid'];

		$lastposteruid = $thread['lastposteruid'];

 
		if(!$lastposteruid && !$thread['lastposter'])
{
$lastposter = htmlspecialchars_uni($lang->guest);
}
else
{
$lastposter = htmlspecialchars_uni($thread['lastposter']);
}

		$lastpostdate = my_date('relative', $thread['lastpost']);

// Don't link to guest's profiles (they have no profile).

		$lastpostdate = my_date('relative', $thread['lastpost']);

// Don't link to guest's profiles (they have no profile).

Zeile 1361Zeile 1366
					foreach($gids as $gid)
{
$gid = (int)$gid;

					foreach($gids as $gid)
{
$gid = (int)$gid;

						$gidswhere .= " OR CONCAT(',',groups,',') LIKE '%,{$gid},%'";

						$gidswhere .= " OR CONCAT(',',`groups`,',') LIKE '%,{$gid},%'";

					}

					}

					$query = $db->simple_select("modtools", 'tid, name', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (groups='' OR CONCAT(',',groups,',') LIKE '%,-1,%'{$gidswhere}) AND type = 't'");

					$query = $db->simple_select("modtools", 'tid, name', "(CONCAT(',',forums,',') LIKE '%,$fid,%' OR CONCAT(',',forums,',') LIKE '%,-1,%' OR forums='') AND (`groups`='' OR CONCAT(',',`groups`,',') LIKE '%,-1,%'{$gidswhere}) AND type = 't'");

					break;
}

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

					break;
}

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

 
				$tool['name'] = htmlspecialchars_uni($tool['name']);

				eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";");
}


				eval("\$customthreadtools .= \"".$templates->get("forumdisplay_inlinemoderation_custom_tool")."\";");
}