Vergleich newreply.php - 1.8.27 - 1.8.37

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 230Zeile 230
				eval("\$postinsert = \"".$templates->get("post_attachments_attachment_postinsert")."\";");
}
eval("\$attach_rem_options = \"".$templates->get("post_attachments_attachment_remove")."\";");

				eval("\$postinsert = \"".$templates->get("post_attachments_attachment_postinsert")."\";");
}
eval("\$attach_rem_options = \"".$templates->get("post_attachments_attachment_remove")."\";");

 
			$attach_mod_options = '';

			eval("\$attemplate = \"".$templates->get("post_attachments_attachment")."\";");
$ret['template'] = $attemplate;


			eval("\$attemplate = \"".$templates->get("post_attachments_attachment")."\";");
$ret['template'] = $attemplate;


Zeile 260Zeile 261

// Remove an attachment.
if($mybb->settings['enableattachments'] == 1 && $mybb->get_input('attachmentaid', MyBB::INPUT_INT) && $mybb->get_input('attachmentact') == "remove")


// Remove an attachment.
if($mybb->settings['enableattachments'] == 1 && $mybb->get_input('attachmentaid', MyBB::INPUT_INT) && $mybb->get_input('attachmentact') == "remove")

{
// Verify incoming POST request

{
// Verify incoming POST request

	verify_post_check($mybb->get_input('my_post_key'));

remove_attachment($pid, $mybb->get_input('posthash'), $mybb->get_input('attachmentaid', MyBB::INPUT_INT));

	verify_post_check($mybb->get_input('my_post_key'));

remove_attachment($pid, $mybb->get_input('posthash'), $mybb->get_input('attachmentaid', MyBB::INPUT_INT));

Zeile 310Zeile 311
	verify_post_check($mybb->get_input('my_post_key'));

$plugins->run_hooks("newreply_do_newreply_start");

	verify_post_check($mybb->get_input('my_post_key'));

$plugins->run_hooks("newreply_do_newreply_start");





	// If this isn't a logged in user, then we need to do some special validation.
if($mybb->user['uid'] == 0)
{

	// If this isn't a logged in user, then we need to do some special validation.
if($mybb->user['uid'] == 0)
{

Zeile 360Zeile 361
		}
}
// This user is logged in.

		}
}
// This user is logged in.

	else
{

	else
{

		$username = $mybb->user['username'];
$uid = $mybb->user['uid'];
}

		$username = $mybb->user['username'];
$uid = $mybb->user['uid'];
}

Zeile 572Zeile 573
			{
$quoted_ids = explode("|", $mybb->get_input('quoted_ids'));
$multiquote = explode("|", $mybb->cookies['multiquote']);

			{
$quoted_ids = explode("|", $mybb->get_input('quoted_ids'));
$multiquote = explode("|", $mybb->cookies['multiquote']);

				if(is_array($multiquote) && is_array($quoted_ids))

				if(!empty($multiquote) && !empty($quoted_ids))

				{
foreach($multiquote as $key => $quoteid)
{

				{
foreach($multiquote as $key => $quoteid)
{

Zeile 583Zeile 584
						}
}
// Still have an array - set the new cookie

						}
}
// Still have an array - set the new cookie

					if(is_array($multiquote))

					if(!empty($multiquote))

					{
$new_multiquote = implode(",", $multiquote);
my_setcookie("multiquote", $new_multiquote);

					{
$new_multiquote = implode(",", $multiquote);
my_setcookie("multiquote", $new_multiquote);

Zeile 625Zeile 626
					if($new_post['pid'] != $mybb->get_input('lastpid', MyBB::INPUT_INT))
{
redirect(get_thread_link($tid, 0, "lastpost"));

					if($new_post['pid'] != $mybb->get_input('lastpid', MyBB::INPUT_INT))
{
redirect(get_thread_link($tid, 0, "lastpost"));

					}
}


					}
}


				// Lets see if this post is on the same page as the one we're viewing or not
// if it isn't, redirect us

				// Lets see if this post is on the same page as the one we're viewing or not
// if it isn't, redirect us

				if($perpage > 0 && (($postcounter) % $perpage) == 0)

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

				{

				{

					$post_page = ($postcounter) / $mybb->settings['postsperpage'];

					$post_page = ceil(($postcounter + 1) / $mybb->settings['postsperpage']);

				}
else
{

				}
else
{

					$post_page = (int)($postcounter / $mybb->settings['postsperpage']) + 1;

					$post_page = 1;

				}

if($post_page > $mybb->get_input('from_page', MyBB::INPUT_INT))

				}

if($post_page > $mybb->get_input('from_page', MyBB::INPUT_INT))

Zeile 858Zeile 859
				}
eval("\$multiquote_external = \"".$templates->get("newreply_multiquote_external")."\";");
}

				}
eval("\$multiquote_external = \"".$templates->get("newreply_multiquote_external")."\";");
}

			if(is_array($quoted_ids) && count($quoted_ids) > 0)
{
$quoted_ids = implode("|", $quoted_ids);
}

			$quoted_ids = implode("|", $quoted_ids);




		}
}

if(isset($mybb->input['quoted_ids']))
{

		}
}

if(isset($mybb->input['quoted_ids']))
{

		$quoted_ids = htmlspecialchars_uni($mybb->get_input('quoted_ids', MyBB::INPUT_INT));

		$quoted_ids = htmlspecialchars_uni($mybb->get_input('quoted_ids'));

	}

if(isset($mybb->input['previewpost']))

	}

if(isset($mybb->input['previewpost']))

Zeile 1159Zeile 1157
		else
{
$lang->attach_usage = "";

		else
{
$lang->attach_usage = "";

		}


		}


		$attach_add_options = '';
if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !$noshowattach)

		$attach_add_options = '';
if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !$noshowattach)

		{

		{

			eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");

			eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");

		}

		}


$attach_update_options = '';
if(($mybb->usergroup['caneditattachments'] || $forumpermissions['caneditattachments']) && $attachcount > 0)


$attach_update_options = '';
if(($mybb->usergroup['caneditattachments'] || $forumpermissions['caneditattachments']) && $attachcount > 0)

		{

		{

			eval("\$attach_update_options = \"".$templates->get("post_attachments_update")."\";");
}

if($attach_add_options || $attach_update_options)
{
eval("\$newattach = \"".$templates->get("post_attachments_new")."\";");

			eval("\$attach_update_options = \"".$templates->get("post_attachments_update")."\";");
}

if($attach_add_options || $attach_update_options)
{
eval("\$newattach = \"".$templates->get("post_attachments_new")."\";");

		}


		}


		eval("\$attachbox = \"".$templates->get("post_attachments")."\";");

		eval("\$attachbox = \"".$templates->get("post_attachments")."\";");

 
	}
else
{
$attachbox = '';

	}

// If the user is logged in, provide a save draft button.

	}

// If the user is logged in, provide a save draft button.

Zeile 1226Zeile 1228
		else if($correct && (in_array($post_captcha->type, array(captcha::NOCAPTCHA_RECAPTCHA, captcha::RECAPTCHA_INVISIBLE, captcha::RECAPTCHA_V3))))
{
$post_captcha->build_recaptcha();

		else if($correct && (in_array($post_captcha->type, array(captcha::NOCAPTCHA_RECAPTCHA, captcha::RECAPTCHA_INVISIBLE, captcha::RECAPTCHA_V3))))
{
$post_captcha->build_recaptcha();

		}

		}

		else if($correct && (in_array($post_captcha->type, array(captcha::HCAPTCHA, captcha::HCAPTCHA_INVISIBLE))))

		else if($correct && (in_array($post_captcha->type, array(captcha::HCAPTCHA, captcha::HCAPTCHA_INVISIBLE))))

		{

		{

			$post_captcha->build_hcaptcha();

			$post_captcha->build_hcaptcha();

		}

		}


if($post_captcha->html)
{


if($post_captcha->html)
{

Zeile 1239Zeile 1241
	}

$reviewmore = '';

	}

$reviewmore = '';

 
	$threadreview = '';

	if($mybb->settings['threadreview'] != 0)
{
if(is_moderator($fid, "canviewunapprove") || $mybb->settings['showownunapproved'])

	if($mybb->settings['threadreview'] != 0)
{
if(is_moderator($fid, "canviewunapprove") || $mybb->settings['showownunapproved'])

		{

		{

			$visibility = "(visible='1' OR visible='0')";
}
else

			$visibility = "(visible='1' OR visible='0')";
}
else

Zeile 1259Zeile 1262
			eval("\$reviewmore = \"".$templates->get("newreply_threadreview_more")."\";");
}


			eval("\$reviewmore = \"".$templates->get("newreply_threadreview_more")."\";");
}


 
		$pidin = array();

		$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND {$visibility}", array("order_by" => "dateline DESC, pid DESC", "limit" => $mybb->settings['postsperpage']));
while($post = $db->fetch_array($query))
{
$pidin[] = $post['pid'];
}


		$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND {$visibility}", array("order_by" => "dateline DESC, pid DESC", "limit" => $mybb->settings['postsperpage']));
while($post = $db->fetch_array($query))
{
$pidin[] = $post['pid'];
}


		$pidin = implode(",", $pidin);

// Fetch attachments
$query = $db->simple_select("attachments", "*", "pid IN ($pidin)");
while($attachment = $db->fetch_array($query))
{
$attachcache[$attachment['pid']][$attachment['aid']] = $attachment;
}
$query = $db->query("
SELECT p.*, u.username AS userusername
FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (p.uid=u.uid)
WHERE pid IN ($pidin)
ORDER BY dateline DESC, pid DESC
");
$postsdone = 0;
$altbg = "trow1";
$reviewbits = '';
while($post = $db->fetch_array($query))

		if(!empty($pidin))



















		{

		{

			if($post['userusername'])
{
$post['username'] = $post['userusername'];
}
$reviewpostdate = my_date('relative', $post['dateline']);
$parser_options = array(
"allow_html" => $forum['allowhtml'],
"allow_mycode" => $forum['allowmycode'],
"allow_smilies" => $forum['allowsmilies'],
"allow_imgcode" => $forum['allowimgcode'],
"allow_videocode" => $forum['allowvideocode'],
"me_username" => $post['username'],
"filter_badwords" => 1
);
if($post['smilieoff'] == 1)
{
$parser_options['allow_smilies'] = 0;
}

			$pidin = implode(",", $pidin);






















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



			// Fetch attachments
$query = $db->simple_select("attachments", "*", "pid IN ($pidin)");
while($attachment = $db->fetch_array($query))

			{

			{

				$parser_options['allow_imgcode'] = 0;

				$attachcache[$attachment['pid']][$attachment['aid']] = $attachment;

			}

			}


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










			$query = $db->query("
SELECT p.*, u.username AS userusername
FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (p.uid=u.uid)
WHERE pid IN ($pidin)
ORDER BY dateline DESC, pid DESC
");
$postsdone = 0;
$altbg = "trow1";
$reviewbits = '';
while($post = $db->fetch_array($query))

			{

			{

				$parser_options['allow_videocode'] = 0;
}

$post['username'] = htmlspecialchars_uni($post['username']);
































				if($post['userusername'])
{
$post['username'] = $post['userusername'];
}
$reviewpostdate = my_date('relative', $post['dateline']);
$parser_options = array(
"allow_html" => $forum['allowhtml'],
"allow_mycode" => $forum['allowmycode'],
"allow_smilies" => $forum['allowsmilies'],
"allow_imgcode" => $forum['allowimgcode'],
"allow_videocode" => $forum['allowvideocode'],
"me_username" => $post['username'],
"filter_badwords" => 1
);
if($post['smilieoff'] == 1)
{
$parser_options['allow_smilies'] = 0;
}

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

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

$post['username'] = htmlspecialchars_uni($post['username']);

if($post['visible'] != 1)
{
$altbg = "trow_shaded";
}





			if($post['visible'] != 1)
{
$altbg = "trow_shaded";
}

				$plugins->run_hooks("newreply_threadreview_post");








			$plugins->run_hooks("newreply_threadreview_post");

$post['message'] = $parser->parse_message($post['message'], $parser_options);
get_post_attachments($post['pid'], $post);
$reviewmessage = $post['message'];
eval("\$reviewbits .= \"".$templates->get("newreply_threadreview_post")."\";");
if($altbg == "trow1")
{
$altbg = "trow2";
}
else
{
$altbg = "trow1";

				$post['message'] = $parser->parse_message($post['message'], $parser_options);
get_post_attachments($post['pid'], $post);
$reviewmessage = $post['message'];
eval("\$reviewbits .= \"".$templates->get("newreply_threadreview_post")."\";");
if($altbg == "trow1")
{
$altbg = "trow2";
}
else
{
$altbg = "trow1";
}


			}

			}

 
			eval("\$threadreview = \"".$templates->get("newreply_threadreview")."\";");

		}

		}

		eval("\$threadreview = \"".$templates->get("newreply_threadreview")."\";");

 
	}

// Hide signature option if no permission

	}

// Hide signature option if no permission