Vergleich archive/index.php - 1.8.18 - 1.8.27

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 26Zeile 26
		if($announcement['fid'] != -1)
{
$forum = get_forum($announcement['fid']);

		if($announcement['fid'] != -1)
{
$forum = get_forum($announcement['fid']);

			if(!$forum['fid'] || $forum['password'] != '')

			if(!$forum['fid'] || $forum['password'] !== '')

			{
archive_error($lang->error_invalidforum);
}

			{
archive_error($lang->error_invalidforum);
}

Zeile 80Zeile 80

// Fetch the forum this thread is in
$forum = get_forum($thread['fid']);


// Fetch the forum this thread is in
$forum = get_forum($thread['fid']);

		if(!$forum['fid'] || $forum['password'] != '')

		if(!$forum['fid'] || $forum['password'] !== '')

		{
archive_error($lang->error_invalidforum);
}

		{
archive_error($lang->error_invalidforum);
}

Zeile 144Zeile 144

$pids = array();
// Fetch list of post IDs to be shown


$pids = array();
// Fetch list of post IDs to be shown

		$query = $db->simple_select("posts", "pid", "tid='{$id}' AND visible='1'", array('order_by' => 'dateline', 'limit_start' => $start, 'limit' => $perpage));

		$query = $db->simple_select("posts", "pid", "tid='{$id}' AND visible='1'", array('order_by' => 'dateline, pid', 'limit_start' => $start, 'limit' => $perpage));

		while($post = $db->fetch_array($query))
{
$pids[$post['pid']] = $post['pid'];

		while($post = $db->fetch_array($query))
{
$pids[$post['pid']] = $post['pid'];

Zeile 175Zeile 175
			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
WHERE p.pid IN ({$pids})

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)
WHERE p.pid IN ({$pids})

			ORDER BY p.dateline

			ORDER BY p.dateline, p.pid

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

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