Zeile 15 | Zeile 15 |
---|
$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,post_attachments_viewlink,postbit_attachments_attachment,newreply_signature";
|
$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,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 .= ",post_captcha_recaptcha_invisible,post_captcha_hidden,post_captcha,post_captcha_nocaptcha,post_javascript,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 126 | Zeile 126 |
---|
error_no_permission(); }
|
error_no_permission(); }
|
// Coming from quick reply? Set some defaults if($mybb->get_input('method') == "quickreply")
| // Coming from quick reply and not a preview call? Set subscription method if($mybb->get_input('method') == "quickreply" && !isset($mybb->input['previewpost']))
|
{
|
{
|
if($mybb->user['subscriptionmethod'] == 1) { $mybb->input['postoptions']['subscriptionmethod'] = "none"; } else if($mybb->user['subscriptionmethod'] == 2) { $mybb->input['postoptions']['subscriptionmethod'] = "email"; } else if($mybb->user['subscriptionmethod'] == 3) { $mybb->input['postoptions']['subscriptionmethod'] = "pm"; }
| $mybb->input['postoptions']['subscriptionmethod'] = get_subscription_method($mybb->get_input('tid', MyBB::INPUT_INT));
|
}
// Check if this forum is password protected and we have a valid password
| }
// Check if this forum is password protected and we have a valid password
|
Zeile 180 | Zeile 169 |
---|
if($thread['closed'] == 1) { error($lang->redirect_threadclosed);
|
if($thread['closed'] == 1) { error($lang->redirect_threadclosed);
|
} }
| } }
|
// No weird actions allowed, show new reply form if no regular action. if($mybb->input['action'] != "do_newreply" && $mybb->input['action'] != "editdraft")
|
// No weird actions allowed, show new reply form if no regular action. if($mybb->input['action'] != "do_newreply" && $mybb->input['action'] != "editdraft")
|
{ $mybb->input['action'] = "newreply"; }
| { $mybb->input['action'] = "newreply"; }
|
// Even if we are previewing, still show the new reply form. if(!empty($mybb->input['previewpost']))
| // Even if we are previewing, still show the new reply form. if(!empty($mybb->input['previewpost']))
|
Zeile 202 | Zeile 191 |
---|
}
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_empty_post_input); }
| error($lang->error_empty_post_input); }
|
Zeile 220 | Zeile 209 |
---|
else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'";
|
else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'";
|
}
// If there's an attachment, check it and upload it if($forumpermissions['canpostattachments'] != 0) { // If attachment exists.. if(!empty($_FILES['attachment']['name']) && !empty($_FILES['attachment']['type'])) { if($_FILES['attachment']['size'] > 0) { $query = $db->simple_select("attachments", "aid", "filename='".$db->escape_string($_FILES['attachment']['name'])."' AND {$attachwhere}"); $updateattach = $db->fetch_field($query, "aid");
require_once MYBB_ROOT."inc/functions_upload.php";
$update_attachment = false; if($updateattach > 0 && $mybb->get_input('updateattachment')) { $update_attachment = true; } $attachedfile = upload_attachment($_FILES['attachment'], $update_attachment); } else { $errors[] = $lang->error_uploadempty; $mybb->input['action'] = "newreply"; } } }
| }
require_once MYBB_ROOT."inc/functions_upload.php";
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "newreply");
if(!empty($ret['errors'])) { $errors = $ret['errors']; }
|
|
|
if(!empty($attachedfile['error'])) { $errors[] = $attachedfile['error']; $mybb->input['action'] = "newreply"; }
if(!$mybb->get_input('submit'))
| // If we were dealing with an attachment but didn't click 'Post Reply', force the new reply page again. if(!$mybb->get_input('submit'))
|
{ eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";"); $mybb->input['action'] = "newreply"; } }
|
{ eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";"); $mybb->input['action'] = "newreply"; } }
|
|
|
// 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") {
|
Zeile 272 | Zeile 237 |
---|
require_once MYBB_ROOT."inc/functions_upload.php"; remove_attachment($pid, $mybb->get_input('posthash'), $mybb->get_input('attachmentaid', MyBB::INPUT_INT)); if(!$mybb->get_input('submit'))
|
require_once MYBB_ROOT."inc/functions_upload.php"; remove_attachment($pid, $mybb->get_input('posthash'), $mybb->get_input('attachmentaid', MyBB::INPUT_INT)); if(!$mybb->get_input('submit'))
|
{
| {
|
eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";"); $mybb->input['action'] = "newreply"; }
| eval("\$editdraftpid = \"".$templates->get("newreply_draftinput")."\";"); $mybb->input['action'] = "newreply"; }
|
Zeile 333 | Zeile 298 |
---|
try { if($stop_forum_spam_checker->is_user_a_spammer($mybb->get_input('username'), '', get_ip()))
|
try { if($stop_forum_spam_checker->is_user_a_spammer($mybb->get_input('username'), '', get_ip()))
|
{
| {
|
error($lang->sprintf($lang->error_stop_forum_spam_spammer, $stop_forum_spam_checker->getErrorText(array( 'stopforumspam_check_usernames',
| error($lang->sprintf($lang->error_stop_forum_spam_spammer, $stop_forum_spam_checker->getErrorText(array( 'stopforumspam_check_usernames',
|
Zeile 662 | Zeile 627 |
---|
$charset = "UTF-8"; if($lang->settings['charset'])
|
$charset = "UTF-8"; if($lang->settings['charset'])
|
{
| {
|
$charset = $lang->settings['charset']; }
| $charset = $lang->settings['charset']; }
|
Zeile 877 | Zeile 842 |
---|
if(isset($postoptions['signature']) && $postoptions['signature'] == 1) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
if(isset($postoptions['signature']) && $postoptions['signature'] == 1) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
} if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "none") { $postoptions_subscriptionmethod_none = "checked=\"checked\""; } else if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "email") { $postoptions_subscriptionmethod_email = "checked=\"checked\""; } else if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "pm") { $postoptions_subscriptionmethod_pm = "checked=\"checked\""; } else { $postoptions_subscriptionmethod_dont = "checked=\"checked\"";
| |
} if(isset($postoptions['disablesmilies']) && $postoptions['disablesmilies'] == 1) { $postoptionschecked['disablesmilies'] = " checked=\"checked\""; }
|
} if(isset($postoptions['disablesmilies']) && $postoptions['disablesmilies'] == 1) { $postoptionschecked['disablesmilies'] = " checked=\"checked\""; }
|
| $subscription_method = get_subscription_method($tid, $postoptions);
|
$subject = $mybb->input['subject']; } elseif($mybb->input['action'] == "editdraft" && $mybb->user['uid'])
| $subject = $mybb->input['subject']; } elseif($mybb->input['action'] == "editdraft" && $mybb->user['uid'])
|
Zeile 912 | Zeile 862 |
---|
{ $postoptionschecked['disablesmilies'] = " checked=\"checked\""; }
|
{ $postoptionschecked['disablesmilies'] = " checked=\"checked\""; }
|
if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "none") { $postoptions_subscriptionmethod_none = "checked=\"checked\""; } else if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "email") { $postoptions_subscriptionmethod_email = "checked=\"checked\""; } else if(isset($postoptions['subscriptionmethod']) && $postoptions['subscriptionmethod'] == "pm") { $postoptions_subscriptionmethod_pm = "checked=\"checked\""; } else { $postoptions_subscriptionmethod_dont = "checked=\"checked\""; }
| $subscription_method = get_subscription_method($tid); // Subscription method doesn't get saved in drafts
|
$mybb->input['icon'] = $post['icon']; } else { if($mybb->user['signature'] != '')
|
$mybb->input['icon'] = $post['icon']; } else { if($mybb->user['signature'] != '')
|
{
| {
|
$postoptionschecked['signature'] = " checked=\"checked\""; }
|
$postoptionschecked['signature'] = " checked=\"checked\""; }
|
$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\""; } else if($subscription_method == 2) { $postoptions_subscriptionmethod_email = "checked=\"checked\""; } else if($subscription_method == 3) { $postoptions_subscriptionmethod_pm = "checked=\"checked\""; } else { $postoptions_subscriptionmethod_dont = "checked=\"checked\""; }
| $subscription_method = get_subscription_method($tid);
|
}
|
}
|
| ${'postoptions_subscriptionmethod_'.$subscription_method} = "checked=\"checked\"";
|
if($forum['allowpicons'] != 0) {
| if($forum['allowpicons'] != 0) {
|
Zeile 1007 | Zeile 917 |
---|
$username = $mybb->get_input('username'); } $uid = 0;
|
$username = $mybb->get_input('username'); } $uid = 0;
|
}
| }
|
// This user is logged in. else {
| // This user is logged in. else {
|
Zeile 1035 | Zeile 945 |
---|
);
if(isset($mybb->input['pid']))
|
);
if(isset($mybb->input['pid']))
|
{
| {
|
$post['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);
|
$post['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);
|
}
$posthandler->set_data($post);
| }
$posthandler->set_data($post);
|
// Now let the post handler do all the hard work. $valid_post = $posthandler->verify_message();
| // Now let the post handler do all the hard work. $valid_post = $posthandler->verify_message();
|
Zeile 1049 | Zeile 959 |
---|
if($post['uid'] == 0) { $valid_username = $posthandler->verify_author();
|
if($post['uid'] == 0) { $valid_username = $posthandler->verify_author();
|
}
| }
|
else { $valid_username = true;
| else { $valid_username = true;
|
Zeile 1090 | Zeile 1000 |
---|
if(isset($mybb->input['postoptions']['disablesmilies'])) { $post['smilieoff'] = $mybb->input['postoptions']['disablesmilies'];
|
if(isset($mybb->input['postoptions']['disablesmilies'])) { $post['smilieoff'] = $mybb->input['postoptions']['disablesmilies'];
|
}
| }
|
$post['dateline'] = TIME_NOW; if(isset($mybb->input['postoptions']['signature'])) { $post['includesig'] = $mybb->input['postoptions']['signature']; } if(!isset($post['includesig']) || $post['includesig'] != 1)
|
$post['dateline'] = TIME_NOW; if(isset($mybb->input['postoptions']['signature'])) { $post['includesig'] = $mybb->input['postoptions']['signature']; } if(!isset($post['includesig']) || $post['includesig'] != 1)
|
{
| {
|
$post['includesig'] = 0;
|
$post['includesig'] = 0;
|
}
| }
|
// Fetch attachments assigned to this post. if($mybb->get_input('pid', MyBB::INPUT_INT))
| // Fetch attachments assigned to this post. if($mybb->get_input('pid', MyBB::INPUT_INT))
|
Zeile 1109 | Zeile 1019 |
---|
else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'";
|
else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'";
|
}
| }
|
$query = $db->simple_select("attachments", "*", $attachwhere); while($attachment = $db->fetch_array($query)) { $attachcache[0][$attachment['aid']] = $attachment; }
|
$query = $db->simple_select("attachments", "*", $attachwhere); while($attachment = $db->fetch_array($query)) { $attachcache[0][$attachment['aid']] = $attachment; }
|
|
|
$postbit = build_postbit($post, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
|
$postbit = build_postbit($post, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
|
}
| }
|
$subject = htmlspecialchars_uni($parser->parse_badwords($subject));
$posthash = htmlspecialchars_uni($mybb->get_input('posthash'));
| $subject = htmlspecialchars_uni($parser->parse_badwords($subject));
$posthash = htmlspecialchars_uni($mybb->get_input('posthash'));
|
Zeile 1131 | Zeile 1041 |
---|
{ $reply_errors = inline_error($errors); }
|
{ $reply_errors = inline_error($errors); }
|
|
|
// Get a listing of the current attachments. if($mybb->settings['enableattachments'] != 0 && $forumpermissions['canpostattachments'] != 0) {
| // Get a listing of the current attachments. if($mybb->settings['enableattachments'] != 0 && $forumpermissions['canpostattachments'] != 0) {
|
Zeile 1214 | Zeile 1124 |
---|
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 1535 | Zeile 1445 |
---|
eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
|
eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
|
| $php_max_upload_filesize = return_bytes(ini_get('max_upload_filesize')); $php_post_max_size = return_bytes(ini_get('post_max_size'));
if ($php_max_upload_filesize != 0 && $php_post_max_size != 0) { $php_max_upload_size = min($php_max_upload_filesize, $php_post_max_size); } else { $php_max_upload_size = max($php_max_upload_filesize, $php_post_max_size); }
$php_max_file_uploads = (int)ini_get('max_file_uploads'); eval("\$post_javascript = \"".$templates->get("post_javascript")."\";");
|
$plugins->run_hooks("newreply_end");
| $plugins->run_hooks("newreply_end");
|