Vergleich newreply.php - 1.8.15 - 1.8.16

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 14Zeile 14
$templatelist = "newreply,previewpost,loginbox,changeuserbox,posticons,newreply_threadreview,newreply_threadreview_post,forumdisplay_rules_link,newreply_multiquote_external,post_attachments_add,post_subscription_method";
$templatelist .= ",codebuttons,post_attachments_new,post_attachments,post_savedraftbutton,newreply_modoptions,newreply_threadreview_more,postbit_online,postbit_pm,newreply_disablesmilies_hidden,post_attachments_update";
$templatelist .= ",postbit_warninglevel,postbit_author_user,postbit_edit,postbit_quickdelete,postbit_inlinecheck,postbit_posturl,postbit_quote,postbit_multiquote,newreply_modoptions_close,newreply_modoptions_stick";

$templatelist = "newreply,previewpost,loginbox,changeuserbox,posticons,newreply_threadreview,newreply_threadreview_post,forumdisplay_rules_link,newreply_multiquote_external,post_attachments_add,post_subscription_method";
$templatelist .= ",codebuttons,post_attachments_new,post_attachments,post_savedraftbutton,newreply_modoptions,newreply_threadreview_more,postbit_online,postbit_pm,newreply_disablesmilies_hidden,post_attachments_update";
$templatelist .= ",postbit_warninglevel,postbit_author_user,postbit_edit,postbit_quickdelete,postbit_inlinecheck,postbit_posturl,postbit_quote,postbit_multiquote,newreply_modoptions_close,newreply_modoptions_stick";

$templatelist .= ",post_attachments_attachment_postinsert,post_attachments_attachment_remove,post_attachments_attachment_unapproved,post_attachments_attachment,postbit_attachments_attachment,newreply_signature";
$templatelist .= ",post_captcha_recaptcha_invisible,post_captcha_hidden,post_captcha,post_captcha_recaptcha,post_captcha_nocaptcha,postbit_groupimage,postbit_attachments,newreply_postoptions";

$templatelist .= ",post_attachments_attachment_postinsert,post_attachments_attachment_remove,post_attachments_attachment_unapproved,post_attachments_attachment,post_attachments_viewlink,postbit_attachments_attachment,newreply_signature";
$templatelist .= ",post_captcha_recaptcha_invisible,post_captcha_hidden,post_captcha,post_captcha_nocaptcha,postbit_groupimage,postbit_attachments,newreply_postoptions";

$templatelist .= ",postbit_rep_button,postbit_author_guest,postbit_signature,postbit_classic,postbit_attachments_thumbnails_thumbnailpostbit_attachments_images_image,postbit_attachments_attachment_unapproved";
$templatelist .= ",postbit_attachments_thumbnails,postbit_attachments_images,postbit_gotopost,forumdisplay_password_wrongpass,forumdisplay_password,posticons_icon,attachment_icon,postbit_reputation_formatted_link";
$templatelist .= ",global_moderation_notice,newreply_disablesmilies,postbit_userstar,newreply_draftinput,postbit_avatar,forumdisplay_rules,postbit_offline,postbit_find,postbit_warninglevel_formatted,postbit_ignored";

$templatelist .= ",postbit_rep_button,postbit_author_guest,postbit_signature,postbit_classic,postbit_attachments_thumbnails_thumbnailpostbit_attachments_images_image,postbit_attachments_attachment_unapproved";
$templatelist .= ",postbit_attachments_thumbnails,postbit_attachments_images,postbit_gotopost,forumdisplay_password_wrongpass,forumdisplay_password,posticons_icon,attachment_icon,postbit_reputation_formatted_link";
$templatelist .= ",global_moderation_notice,newreply_disablesmilies,postbit_userstar,newreply_draftinput,postbit_avatar,forumdisplay_rules,postbit_offline,postbit_find,postbit_warninglevel_formatted,postbit_ignored";

Zeile 56Zeile 56
	{
error($lang->error_post_noperms);
}

	{
error($lang->error_post_noperms);
}

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

	$pid = (int)$post['pid'];
$tid = (int)$post['tid'];

	eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";");
}


	eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";");
}


Zeile 67Zeile 67
{
error($lang->error_invalidthread);
}

{
error($lang->error_invalidthread);
}

$fid = $thread['fid'];

$fid = (int)$thread['fid'];


// Get forum info
$forum = get_forum($fid);


// Get forum info
$forum = get_forum($fid);

Zeile 203Zeile 203

if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == 1)
{


if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == 1)
{

	error($lang->error_cannot_upload_php_post);

	error($lang->error_empty_post_input);

}

$errors = array();

}

$errors = array();

Zeile 368Zeile 368
	}
if(!$mybb->get_input('savedraft'))
{

	}
if(!$mybb->get_input('savedraft'))
{

		$query = $db->simple_select("posts p", "p.pid, p.visible", "{$user_check} AND p.tid='{$thread['tid']}' AND p.subject='".$db->escape_string($mybb->get_input('subject'))."' AND p.message='".$db->escape_string($mybb->get_input('message'))."' AND p.visible != '-2' AND p.dateline>".(TIME_NOW-600));

		$query = $db->simple_select("posts p", "p.pid, p.visible", "{$user_check} AND p.tid='{$thread['tid']}' AND p.subject='".$db->escape_string($mybb->get_input('subject'))."' AND p.message='".$db->escape_string($mybb->get_input('message'))."' AND p.visible > -1 AND p.dateline>".(TIME_NOW-600));

		$duplicate_check = $db->fetch_field($query, "pid");
if($duplicate_check)
{

		$duplicate_check = $db->fetch_field($query, "pid");
if($duplicate_check)
{

Zeile 468Zeile 468
			$hide_captcha = true;
}


			$hide_captcha = true;
}


		if($mybb->get_input('ajax', MyBB::INPUT_INT))
{
if($post_captcha->type == 1)
{
$randomstr = random_str(5);
$imagehash = md5(random_str(12));

$imagearray = array(
"imagehash" => $imagehash,
"imagestring" => $randomstr,
"dateline" => TIME_NOW
);

$db->insert_query("captcha", $imagearray);

//header("Content-type: text/html; charset={$lang->settings['charset']}");
$data = '';
$data .= "<captcha>$imagehash";

if($hide_captcha)
{
$data .= "|$randomstr";
}

$data .= "</captcha>";

//header("Content-type: application/json; charset={$lang->settings['charset']}");
$json_data = array("data" => $data);
}
else if($post_captcha->type == 2)
{
//header("Content-type: text/html; charset={$lang->settings['charset']}");
$data = "<captcha>reload</captcha>";

//header("Content-type: application/json; charset={$lang->settings['charset']}");
$json_data = array("data" => $data);
}
}
}

		if($mybb->get_input('ajax', MyBB::INPUT_INT) && $post_captcha->type == 1)
{
$randomstr = random_str(5);
$imagehash = md5(random_str(12));

$imagearray = array(
"imagehash" => $imagehash,
"imagestring" => $randomstr,
"dateline" => TIME_NOW
);

$db->insert_query("captcha", $imagearray);

//header("Content-type: text/html; charset={$lang->settings['charset']}");
$data = '';
$data .= "<captcha>$imagehash";

if($hide_captcha)
{
$data .= "|$randomstr";
}

$data .= "</captcha>";

//header("Content-type: application/json; charset={$lang->settings['charset']}");
$json_data = array("data" => $data);
}
}













// One or more errors returned, fetch error list and throw to newreply page
if(count($post_errors) > 0)


// One or more errors returned, fetch error list and throw to newreply page
if(count($post_errors) > 0)

Zeile 585Zeile 574
					else
{
my_unsetcookie("multiquote");

					else
{
my_unsetcookie("multiquote");

					}
}
}
}

$plugins->run_hooks("newreply_do_newreply_end");

					}
}
}
}

$plugins->run_hooks("newreply_do_newreply_end");


// This was a post made via the ajax quick reply - we need to do some special things here
if($mybb->get_input('ajax', MyBB::INPUT_INT))


// This was a post made via the ajax quick reply - we need to do some special things here
if($mybb->get_input('ajax', MyBB::INPUT_INT))

Zeile 780Zeile 769
				}
}
if(!empty($onlyusfids))

				}
}
if(!empty($onlyusfids))

			{

			{

				$onlyusforums = "AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
}


				$onlyusforums = "AND ((t.fid IN(".implode(',', $onlyusfids).") AND t.uid='{$mybb->user['uid']}') OR t.fid NOT IN(".implode(',', $onlyusfids)."))";
}


Zeile 947Zeile 936
		{
$postoptionschecked['signature'] = " checked=\"checked\"";
}

		{
$postoptionschecked['signature'] = " checked=\"checked\"";
}

		if($mybb->user['subscriptionmethod'] ==  1)













$subscription_method = $mybb->user['subscriptionmethod'];

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

if($subscription['tid'])
{
$subscription_method = (int)$subscription['notification'] + 1;
}

if($subscription_method == 1)

		{
$postoptions_subscriptionmethod_none = "checked=\"checked\"";

		{
$postoptions_subscriptionmethod_none = "checked=\"checked\"";

		}
else if($mybb->user['subscriptionmethod'] == 2)

		}
else if($subscription_method == 2)

		{
$postoptions_subscriptionmethod_email = "checked=\"checked\"";
}

		{
$postoptions_subscriptionmethod_email = "checked=\"checked\"";
}

		else if($mybb->user['subscriptionmethod'] == 3)
{
$postoptions_subscriptionmethod_pm = "checked=\"checked\"";
}

		else if($subscription_method == 3)
{
$postoptions_subscriptionmethod_pm = "checked=\"checked\"";
}

		else
{
$postoptions_subscriptionmethod_dont = "checked=\"checked\"";
}

		else
{
$postoptions_subscriptionmethod_dont = "checked=\"checked\"";
}

	}

	}


if($forum['allowpicons'] != 0)
{
$posticons = get_post_icons();


if($forum['allowpicons'] != 0)
{
$posticons = get_post_icons();

	}

	}


// No subject?
if(!isset($subject))


// No subject?
if(!isset($subject))

Zeile 1189Zeile 1189
			$friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024);
}


			$friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024);
}


		$friendlyusage = get_friendly_size($usage['ausage']);
$lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);











		$lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyquota);
if($usage['ausage'] !== NULL)
{
$friendlyusage = get_friendly_size($usage['ausage']);
$lang->attach_usage = $lang->sprintf($lang->attach_usage, $friendlyusage);
eval("\$link_viewattachments = \"".$templates->get("post_attachments_viewlink")."\";");
}
else
{
$lang->attach_usage = "";
}


		if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !$noshowattach)
{
eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");
}

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

		if($mybb->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !$noshowattach)
{
eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");
}

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

		{

		{

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

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

		}


		}


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

		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")."\";");
}


Zeile 1238Zeile 1247
		}

if(!$correct)

		}

if(!$correct)

		{

		{

			if($post_captcha->type == 1)

			if($post_captcha->type == 1)

			{

			{

				$post_captcha->build_captcha();

				$post_captcha->build_captcha();

			}
elseif(in_array($post_captcha->type, array(2, 4, 5)))

			}
elseif(in_array($post_captcha->type, array(4, 5)))

			{
$post_captcha->build_recaptcha();

			{
$post_captcha->build_recaptcha();

			}

if($post_captcha->html)
{
$captcha = $post_captcha->html;

 
			}
}

			}
}

		else if($correct && (in_array($post_captcha->type, array(2, 4, 5))))

		else if($correct && (in_array($post_captcha->type, array(4, 5))))

		{
$post_captcha->build_recaptcha();

		{
$post_captcha->build_recaptcha();

 
		}





			if($post_captcha->html)
{
$captcha = $post_captcha->html;
}

		if($post_captcha->html)
{
$captcha = $post_captcha->html;


		}
}


		}
}