Vergleich newreply.php - 1.8.11 - 1.8.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 12Zeile 12
define('THIS_SCRIPT', 'newreply.php');

$templatelist = "newreply,previewpost,loginbox,changeuserbox,posticons,newreply_threadreview,newreply_threadreview_post,forumdisplay_rules_link,newreply_multiquote_external,post_attachments_add,post_subscription_method";

define('THIS_SCRIPT', 'newreply.php');

$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,postbit_icon";
$templatelist .= ",postbit_email,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,postbit_report";
$templatelist .= ",member_register_regimage,member_register_regimage_recaptcha,post_captcha_hidden,post_captcha,post_captcha_recaptcha,post_captcha_nocaptcha,postbit_groupimage,postbit_attachments,newreply_postoptions,postbit_reputation";
$templatelist .= ",postbit_rep_button,postbit_warn,postbit_author_guest,postbit_signature,postbit_classic,postbit_attachments_thumbnails_thumbnailpostbit_attachments_images_image,postbit_attachments_attachment_unapproved,postbit_www";
$templatelist .= ",postbit_attachments_thumbnails,postbit_attachments_images,postbit_gotopost,forumdisplay_password_wrongpass,forumdisplay_password,posticons_icon,attachment_icon,postbit_reputation_formatted_link,postbit_away";
$templatelist .= ",global_moderation_notice,newreply_disablesmilies,postbit_userstar,newreply_draftinput,postbit_avatar,forumdisplay_rules,postbit_offline,postbit_find,postbit_warninglevel_formatted,postbit_ignored,postbit";


$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 .= ",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_profilefield_multiselect_value,postbit_profilefield_multiselect,postbit_reputation,postbit_www,postbit_away,postbit_icon,postbit_email,postbit_report,postbit,postbit_warn";


require_once "./global.php";
require_once MYBB_ROOT."inc/functions_post.php";


require_once "./global.php";
require_once MYBB_ROOT."inc/functions_post.php";

Zeile 304Zeile 305
	// 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)
{

		// If they didn't specify a username then give them "Guest"

		// If they didn't specify a username leave blank so $lang->guest can be used on output

		if(!$mybb->get_input('username'))
{

		if(!$mybb->get_input('username'))
{

			$username = $lang->guest;

			$username = '';

		}
// Otherwise use the name they specified.
else

		}
// Otherwise use the name they specified.
else

Zeile 995Zeile 996
		// 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)
{

			// If they didn't specify a username then give them "Guest"

			// If they didn't specify a username leave blank so $lang->guest can be used on output

			if(!$mybb->get_input('username'))
{

			if(!$mybb->get_input('username'))
{

				$username = $lang->guest;

				$username = '';

			}
// Otherwise use the name they specified.
else

			}
// Otherwise use the name they specified.
else

Zeile 1069Zeile 1070
		else
{
$quote_ids = htmlspecialchars_uni($mybb->get_input('quote_ids'));

		else
{
$quote_ids = htmlspecialchars_uni($mybb->get_input('quote_ids'));

			if(!isset($mybb->input['username']))
{
$mybb->input['username'] = $lang->guest;
}

 
			$mybb->input['icon'] = $mybb->get_input('icon', MyBB::INPUT_INT);
$query = $db->query("
SELECT u.*, f.*

			$mybb->input['icon'] = $mybb->get_input('icon', MyBB::INPUT_INT);
$query = $db->query("
SELECT u.*, f.*

Zeile 1081Zeile 1078
				WHERE u.uid='".$mybb->user['uid']."'
");
$post = $db->fetch_array($query);

				WHERE u.uid='".$mybb->user['uid']."'
");
$post = $db->fetch_array($query);

			if(!$mybb->user['uid'] || !$post['username'])
{
$post['username'] = $mybb->get_input('username');
}
else

			$post['username'] = $username;
if($mybb->user['uid'])




			{
$post['userusername'] = $mybb->user['username'];

			{
$post['userusername'] = $mybb->user['username'];

				$post['username'] = $mybb->user['username'];

 
			}
$post['message'] = $previewmessage;
$post['subject'] = $subject;

			}
$post['message'] = $previewmessage;
$post['subject'] = $subject;

Zeile 1250Zeile 1243
			{
$post_captcha->build_captcha();
}

			{
$post_captcha->build_captcha();
}

			elseif($post_captcha->type == 2 || $post_captcha->type == 4)

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

			{
$post_captcha->build_recaptcha();
}

			{
$post_captcha->build_recaptcha();
}

Zeile 1260Zeile 1253
				$captcha = $post_captcha->html;
}
}

				$captcha = $post_captcha->html;
}
}

		else if($correct && ($post_captcha->type == 2 || $post_captcha->type == 4))

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

		{
$post_captcha->build_recaptcha();


		{
$post_captcha->build_recaptcha();