Zeile 192 | Zeile 192 |
---|
}
$attacherror = '';
|
}
$attacherror = '';
|
if($mybb->settings['enableattachments'] == 1 && !$mybb->get_input('attachmentaid', MyBB::INPUT_INT) && ($mybb->get_input('newattachment') || $mybb->get_input('updateattachment') || ($mybb->input['action'] == "do_editpost" && isset($mybb->input['submit']) && $_FILES['attachment'])))
| if($mybb->settings['enableattachments'] == 1 && ($mybb->get_input('newattachment') || $mybb->get_input('updateattachment') || ((($mybb->input['action'] == "do_editpost" && isset($mybb->input['submitbutton'])) || ($mybb->input['action'] == "editpost" && isset($mybb->input['previewpost']))) && $_FILES['attachments'])))
|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
| { // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
Zeile 207 | Zeile 207 |
---|
}
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
|
}
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
|
| if($mybb->get_input('ajax', MyBB::INPUT_INT) == 1) { if(isset($ret['success'])) { $attachment = array('aid'=>'{1}', 'icon'=>'{2}', 'filename'=>'{3}', 'size'=>'{4}'); if($mybb->settings['bbcodeinserter'] != 0 && $forum['allowmycode'] != 0 && $mybb->user['showcodebuttons'] != 0) { eval("\$postinsert = \"".$templates->get("post_attachments_attachment_postinsert")."\";"); } // Moderating options $attach_mod_options = ''; if(is_moderator($fid)) { eval("\$attach_mod_options = \"".$templates->get("post_attachments_attachment_mod_unapprove")."\";"); } eval("\$attach_rem_options = \"".$templates->get("post_attachments_attachment_remove")."\";"); eval("\$attemplate = \"".$templates->get("post_attachments_attachment")."\";"); $ret['template'] = $attemplate;
$query = $db->simple_select("attachments", "SUM(filesize) AS ausage", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query); $ret['usage'] = get_friendly_size($usage['ausage']); } header("Content-type: application/json; charset={$lang->settings['charset']}"); echo json_encode($ret); exit(); }
|
if(!empty($ret['errors'])) {
| if(!empty($ret['errors'])) {
|
Zeile 217 | Zeile 246 |
---|
if(!empty($errors)) { $attacherror = inline_error($errors);
|
if(!empty($errors)) { $attacherror = inline_error($errors);
|
}
| }
|
// If we were dealing with an attachment but didn't click 'Update Post', force the post edit page again.
|
// If we were dealing with an attachment but didn't click 'Update Post', force the post edit page again.
|
if(!isset($mybb->input['submit']))
| if(!isset($mybb->input['submitbutton']))
|
{ $mybb->input['action'] = "editpost"; } }
|
{ $mybb->input['action'] = "editpost"; } }
|
| detect_attachmentact();
|
if($mybb->settings['enableattachments'] == 1 && $mybb->get_input('attachmentaid', MyBB::INPUT_INT) && isset($mybb->input['attachmentact']) && $mybb->input['action'] == "do_editpost" && $mybb->request_method == "post") // Lets remove/approve/unapprove the attachment {
| if($mybb->settings['enableattachments'] == 1 && $mybb->get_input('attachmentaid', MyBB::INPUT_INT) && isset($mybb->input['attachmentact']) && $mybb->input['action'] == "do_editpost" && $mybb->request_method == "post") // Lets remove/approve/unapprove the attachment {
|
Zeile 235 | Zeile 266 |
---|
if($mybb->input['attachmentact'] == "remove") { remove_attachment($pid, "", $mybb->input['attachmentaid']);
|
if($mybb->input['attachmentact'] == "remove") { remove_attachment($pid, "", $mybb->input['attachmentaid']);
|
}
| }
|
elseif($mybb->get_input('attachmentact') == "approve" && is_moderator($fid, 'canapproveunapproveattachs')) { $update_sql = array("visible" => 1);
| elseif($mybb->get_input('attachmentact') == "approve" && is_moderator($fid, 'canapproveunapproveattachs')) { $update_sql = array("visible" => 1);
|
Zeile 251 | Zeile 282 |
---|
if($mybb->get_input('ajax', MyBB::INPUT_INT) == 1) {
|
if($mybb->get_input('ajax', MyBB::INPUT_INT) == 1) {
|
| $query = $db->simple_select("attachments", "SUM(filesize) AS ausage", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query);
|
header("Content-type: application/json; charset={$lang->settings['charset']}");
|
header("Content-type: application/json; charset={$lang->settings['charset']}");
|
echo json_encode(array("success" => true));
| echo json_encode(array("success" => true, "usage" => get_friendly_size($usage['ausage'])));
|
exit(); }
|
exit(); }
|
if(!isset($mybb->input['submit']))
| if(!isset($mybb->input['submitbutton']))
|
{ $mybb->input['action'] = "editpost"; }
| { $mybb->input['action'] = "editpost"; }
|
Zeile 271 | Zeile 305 |
---|
if($mybb->get_input('delete', MyBB::INPUT_INT) == 1) {
|
if($mybb->get_input('delete', MyBB::INPUT_INT) == 1) {
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "asc"));
| $query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline, pid"));
|
$firstcheck = $db->fetch_array($query); if($firstcheck['pid'] == $pid) {
| $firstcheck = $db->fetch_array($query); if($firstcheck['pid'] == $pid) {
|
Zeile 349 | Zeile 383 |
---|
log_moderator_action($modlogdata, $lang->post_deleted); }
|
log_moderator_action($modlogdata, $lang->post_deleted); }
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "desc"));
| $query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline DESC, pid DESC"));
|
$next_post = $db->fetch_array($query); if($next_post['pid']) {
| $next_post = $db->fetch_array($query); if($next_post['pid']) {
|
Zeile 360 | Zeile 394 |
---|
$redirect = get_thread_link($tid); }
|
$redirect = get_thread_link($tid); }
|
if($mybb->input['ajax'] == 1)
| if($mybb->get_input('ajax', MyBB::INPUT_INT) == 1)
|
{ header("Content-type: application/json; charset={$lang->settings['charset']}"); if(is_moderator($fid, "canviewdeleted"))
|
{ header("Content-type: application/json; charset={$lang->settings['charset']}"); if(is_moderator($fid, "canviewdeleted"))
|
{
| {
|
echo json_encode(array("data" => '1', "first" => '0')); } else { echo json_encode(array("data" => '2')); }
|
echo json_encode(array("data" => '1', "first" => '0')); } else { echo json_encode(array("data" => '2')); }
|
}
| }
|
else { redirect($redirect, $lang->redirect_postdeleted);
| else { redirect($redirect, $lang->redirect_postdeleted);
|
Zeile 382 | Zeile 416 |
---|
error_no_permission(); } }
|
error_no_permission(); } }
|
}
| }
|
else { error($lang->redirect_nodelete);
| else { error($lang->redirect_nodelete);
|
Zeile 390 | Zeile 424 |
---|
}
if($mybb->input['action'] == "restorepost" && $mybb->request_method == "post")
|
}
if($mybb->input['action'] == "restorepost" && $mybb->request_method == "post")
|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
| { // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
$plugins->run_hooks("editpost_restorepost");
if($mybb->get_input('restore', MyBB::INPUT_INT) == 1) {
|
$plugins->run_hooks("editpost_restorepost");
if($mybb->get_input('restore', MyBB::INPUT_INT) == 1) {
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "asc"));
| $query = $db->simple_select("posts", "pid", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline, pid"));
|
$firstcheck = $db->fetch_array($query); if($firstcheck['pid'] == $pid) { $firstpost = 1;
|
$firstcheck = $db->fetch_array($query); if($firstcheck['pid'] == $pid) { $firstpost = 1;
|
}
| }
|
else { $firstpost = 0;
| else { $firstpost = 0;
|
Zeile 420 | Zeile 454 |
---|
$moderation = new Moderation; $moderation->restore_threads(array($tid)); log_moderator_action($modlogdata, $lang->thread_restored);
|
$moderation = new Moderation; $moderation->restore_threads(array($tid)); log_moderator_action($modlogdata, $lang->thread_restored);
|
if($mybb->input['ajax'] == 1) {
| if($mybb->input['ajax'] == 1) {
|
header("Content-type: application/json; charset={$lang->settings['charset']}"); echo json_encode(array("data" => '1', "first" => '1'));
|
header("Content-type: application/json; charset={$lang->settings['charset']}"); echo json_encode(array("data" => '1', "first" => '1'));
|
}
| }
|
else { redirect(get_forum_link($fid), $lang->redirect_threadrestored);
|
else { redirect(get_forum_link($fid), $lang->redirect_threadrestored);
|
} } else
| } } else
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 467 | Zeile 501 |
---|
error($lang->redirect_norestore); } }
|
error($lang->redirect_norestore); } }
|
| $postoptions = array();
|
if($mybb->input['action'] == "do_editpost" && $mybb->request_method == "post") {
| if($mybb->input['action'] == "do_editpost" && $mybb->request_method == "post") {
|
Zeile 566 | Zeile 602 |
---|
{ $plugins->run_hooks("editpost_action_start");
|
{ $plugins->run_hooks("editpost_action_start");
|
| $preview = '';
|
if(!isset($mybb->input['previewpost'])) { $icon = $post['icon']; }
if($forum['allowpicons'] != 0)
|
if(!isset($mybb->input['previewpost'])) { $icon = $post['icon']; }
if($forum['allowpicons'] != 0)
|
{
| {
|
$posticons = get_post_icons(); }
| $posticons = get_post_icons(); }
|
Zeile 580 | Zeile 617 |
---|
eval("\$loginbox = \"".$templates->get("changeuserbox")."\";");
$deletebox = '';
|
eval("\$loginbox = \"".$templates->get("changeuserbox")."\";");
$deletebox = '';
|
// Can we delete posts? if($post['visible'] != -1 && (is_moderator($fid, "candeleteposts") || $forumpermissions['candeleteposts'] == 1 && $mybb->user['uid'] == $post['uid']))
| if(isset($post['visible']) && $post['visible'] != -1 && (($thread['firstpost'] == $pid && (is_moderator($fid, "candeletethreads") || $forumpermissions['candeletethreads'] == 1 && $mybb->user['uid'] == $post['uid'])) || ($thread['firstpost'] != $pid && (is_moderator($fid, "candeleteposts") || $forumpermissions['candeleteposts'] == 1 && $mybb->user['uid'] == $post['uid']))))
|
{ eval("\$deletebox = \"".$templates->get("editpost_delete")."\";"); }
| { eval("\$deletebox = \"".$templates->get("editpost_delete")."\";"); }
|
Zeile 597 | Zeile 634 |
---|
$attachment['size'] = get_friendly_size($attachment['filesize']); $attachment['icon'] = get_attachment_icon(get_extension($attachment['filename'])); $attachment['filename'] = htmlspecialchars_uni($attachment['filename']);
|
$attachment['size'] = get_friendly_size($attachment['filesize']); $attachment['icon'] = get_attachment_icon(get_extension($attachment['filename'])); $attachment['filename'] = htmlspecialchars_uni($attachment['filename']);
|
|
|
if($mybb->settings['bbcodeinserter'] != 0 && $forum['allowmycode'] != 0 && $mybb->user['showcodebuttons'] != 0) { eval("\$postinsert = \"".$templates->get("post_attachments_attachment_postinsert")."\";");
| if($mybb->settings['bbcodeinserter'] != 0 && $forum['allowmycode'] != 0 && $mybb->user['showcodebuttons'] != 0) { eval("\$postinsert = \"".$templates->get("post_attachments_attachment_postinsert")."\";");
|
Zeile 642 | Zeile 679 |
---|
if($mybb->usergroup['attachquota'] == 0) { $friendlyquota = $lang->unlimited;
|
if($mybb->usergroup['attachquota'] == 0) { $friendlyquota = $lang->unlimited;
|
}
| }
|
else { $friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024); }
|
else { $friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024); }
|
|
|
$lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyquota);
|
$lang->attach_quota = $lang->sprintf($lang->attach_quota, $friendlyquota);
|
| $link_viewattachments = '';
|
if($usage['ausage'] !== NULL) {
| if($usage['ausage'] !== NULL) {
|
Zeile 660 | Zeile 699 |
---|
{ $lang->attach_usage = ""; }
|
{ $lang->attach_usage = ""; }
|
| $attach_update_options = '';
|
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->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->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")."\";"); } eval("\$attachbox = \"".$templates->get("post_attachments")."\";");
|
if($attach_add_options || $attach_update_options) { eval("\$newattach = \"".$templates->get("post_attachments_new")."\";"); } eval("\$attachbox = \"".$templates->get("post_attachments")."\";");
|
}
| } else { $attachbox = ''; }
|
if(!$mybb->get_input('attachmentaid', MyBB::INPUT_INT) && !$mybb->get_input('newattachment') && !$mybb->get_input('updateattachment') && !isset($mybb->input['previewpost'])) { $message = $post['message'];
| if(!$mybb->get_input('attachmentaid', MyBB::INPUT_INT) && !$mybb->get_input('newattachment') && !$mybb->get_input('updateattachment') && !isset($mybb->input['previewpost'])) { $message = $post['message'];
|
Zeile 709 | Zeile 754 |
---|
require_once MYBB_ROOT."inc/datahandlers/post.php"; $posthandler = new PostDataHandler("update"); $posthandler->action = "post";
|
require_once MYBB_ROOT."inc/datahandlers/post.php"; $posthandler = new PostDataHandler("update"); $posthandler->action = "post";
|
|
|
// Set the post data that came from the input to the $post array. $post = array( "pid" => $mybb->input['pid'],
| // Set the post data that came from the input to the $post array. $post = array( "pid" => $mybb->input['pid'],
|
Zeile 720 | Zeile 765 |
---|
"username" => $post['username'], "edit_uid" => $mybb->user['uid'], "message" => $mybb->get_input('message'),
|
"username" => $post['username'], "edit_uid" => $mybb->user['uid'], "message" => $mybb->get_input('message'),
|
);
| );
|
$postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY); if(!isset($postoptions['signature']))
|
$postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY); if(!isset($postoptions['signature']))
|
{
| {
|
$postoptions['signature'] = 0;
|
$postoptions['signature'] = 0;
|
}
| }
|
if(!isset($postoptions['emailnotify'])) { $postoptions['emailnotify'] = 0; } if(!isset($postoptions['disablesmilies']))
|
if(!isset($postoptions['emailnotify'])) { $postoptions['emailnotify'] = 0; } if(!isset($postoptions['disablesmilies']))
|
{
| {
|
$postoptions['disablesmilies'] = 0; }
| $postoptions['disablesmilies'] = 0; }
|
Zeile 752 | Zeile 797 |
---|
$post_errors = inline_error($post_errors); $mybb->input['action'] = "editpost"; $mybb->input['previewpost'] = 0;
|
$post_errors = inline_error($post_errors); $mybb->input['action'] = "editpost"; $mybb->input['previewpost'] = 0;
|
} else {
| } else {
|
$postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY);
| $postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY);
|
Zeile 799 | Zeile 844 |
---|
while($attachment = $db->fetch_array($query)) { $attachcache[0][$attachment['aid']] = $attachment;
|
while($attachment = $db->fetch_array($query)) { $attachcache[0][$attachment['aid']] = $attachment;
|
}
| }
|
if(!isset($postoptions['disablesmilies'])) {
| if(!isset($postoptions['disablesmilies'])) {
|
Zeile 811 | Zeile 856 |
---|
$postinfo['subject'] = $previewsubject; $postinfo['icon'] = $icon; $postinfo['smilieoff'] = $postoptions['disablesmilies'];
|
$postinfo['subject'] = $previewsubject; $postinfo['icon'] = $icon; $postinfo['smilieoff'] = $postoptions['disablesmilies'];
|
|
|
$postbit = build_postbit($postinfo, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
| $postbit = build_postbit($postinfo, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
|
Zeile 822 | Zeile 867 |
---|
if($post['includesig'] != 0) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
if($post['includesig'] != 0) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
}
| }
|
if($post['smilieoff'] == 1) {
| if($post['smilieoff'] == 1) {
|
Zeile 842 | Zeile 887 |
---|
}
$prefixselect = build_prefix_select($forum['fid'], $mybb->get_input('threadprefix', MyBB::INPUT_INT), 0, $thread['prefix']);
|
}
$prefixselect = build_prefix_select($forum['fid'], $mybb->get_input('threadprefix', MyBB::INPUT_INT), 0, $thread['prefix']);
|
} else {
| } else {
|
$prefixselect = ""; }
| $prefixselect = ""; }
|
Zeile 863 | Zeile 908 |
---|
// Fetch subscription select box eval("\$subscriptionmethod = \"".$templates->get("post_subscription_method")."\";");
|
// Fetch subscription select box eval("\$subscriptionmethod = \"".$templates->get("post_subscription_method")."\";");
|
$query = $db->simple_select("posts", "*", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "asc"));
| $query = $db->simple_select("posts", "*", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline, pid"));
|
$firstcheck = $db->fetch_array($query);
$time = TIME_NOW;
| $firstcheck = $db->fetch_array($query);
$time = TIME_NOW;
|
Zeile 885 | Zeile 930 |
---|
} eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
|
} eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
|
}
| }
|
else
|
else
|
{
| {
|
$pollbox = '';
|
$pollbox = '';
|
}
| }
|
// Hide signature option if no permission $signature = ''; if($mybb->usergroup['canusesig'] == 1 && !$mybb->user['suspendsignature']) { eval("\$signature = \"".$templates->get('editpost_signature')."\";");
|
// Hide signature option if no permission $signature = ''; if($mybb->usergroup['canusesig'] == 1 && !$mybb->user['suspendsignature']) { eval("\$signature = \"".$templates->get('editpost_signature')."\";");
|
}
| }
|
// Can we disable smilies or are they disabled already? $disablesmilies = '';
| // Can we disable smilies or are they disabled already? $disablesmilies = '';
|
Zeile 917 | Zeile 962 |
---|
if($forumpermissions['modattachments'] == 1 && $forumpermissions['canpostattachments'] != 0) { $moderation_text = $lang->moderation_forum_attachments;
|
if($forumpermissions['modattachments'] == 1 && $forumpermissions['canpostattachments'] != 0) { $moderation_text = $lang->moderation_forum_attachments;
|
eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
| eval('$moderation_notice = "'.$templates->get('global_moderation_notice').'";'); } }
|
if(!is_moderator($forum['fid'], "canapproveunapproveposts"))
|
if(!is_moderator($forum['fid'], "canapproveunapproveposts"))
|
{
| {
|
if($forumpermissions['mod_edit_posts'] == 1) { $moderation_text = $lang->moderation_forum_edits;
| if($forumpermissions['mod_edit_posts'] == 1) { $moderation_text = $lang->moderation_forum_edits;
|
Zeile 930 | Zeile 975 |
---|
} }
|
} }
|
$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_upload_size = get_php_upload_limit();
|
$php_max_file_uploads = (int)ini_get('max_file_uploads'); eval("\$post_javascript = \"".$templates->get("post_javascript")."\";");
| $php_max_file_uploads = (int)ini_get('max_file_uploads'); eval("\$post_javascript = \"".$templates->get("post_javascript")."\";");
|