Zeile 16 | Zeile 16 |
---|
$templatelist .= ",postbit_avatar,postbit_find,postbit_pm,postbit_rep_button,postbit_www,postbit_email,postbit_reputation,postbit_warn,postbit_warninglevel,postbit_author_user,posticons"; $templatelist .= ",postbit_signature,postbit_classic,postbit,postbit_attachments_thumbnails_thumbnail,postbit_attachments_images_image,postbit_attachments_attachment,postbit_attachments_attachment_unapproved"; $templatelist .= ",posticons_icon,post_prefixselect_prefix,post_prefixselect_single,newthread_postpoll,editpost_disablesmilies,post_attachments_attachment_mod_approve,post_attachments_attachment_unapproved";
|
$templatelist .= ",postbit_avatar,postbit_find,postbit_pm,postbit_rep_button,postbit_www,postbit_email,postbit_reputation,postbit_warn,postbit_warninglevel,postbit_author_user,posticons"; $templatelist .= ",postbit_signature,postbit_classic,postbit,postbit_attachments_thumbnails_thumbnail,postbit_attachments_images_image,postbit_attachments_attachment,postbit_attachments_attachment_unapproved"; $templatelist .= ",posticons_icon,post_prefixselect_prefix,post_prefixselect_single,newthread_postpoll,editpost_disablesmilies,post_attachments_attachment_mod_approve,post_attachments_attachment_unapproved";
|
$templatelist .= ",postbit_warninglevel_formatted,postbit_reputation_formatted_link,editpost_signature,attachment_icon,post_attachments_attachment,post_attachments_add,post_attachments,editpost_postoptions";
| $templatelist .= ",postbit_warninglevel_formatted,postbit_reputation_formatted_link,editpost_signature,attachment_icon,post_attachments_attachment,post_attachments_add,post_attachments,editpost_postoptions,post_attachments_viewlink";
|
$templatelist .= ",postbit_attachments_images,global_moderation_notice,post_attachments_new,postbit_attachments,postbit_online,postbit_away,postbit_offline,postbit_gotopost,postbit_userstar,postbit_icon";
require_once "./global.php";
| $templatelist .= ",postbit_attachments_images,global_moderation_notice,post_attachments_new,postbit_attachments,postbit_online,postbit_away,postbit_offline,postbit_gotopost,postbit_userstar,postbit_icon";
require_once "./global.php";
|
Zeile 71 | Zeile 71 |
---|
if($thread['visible'] == 0 && !is_moderator($fid, "canviewunapprove") || $thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted") || ($thread['visible'] < -1 && $thread['uid'] != $mybb->user['uid'])) {
|
if($thread['visible'] == 0 && !is_moderator($fid, "canviewunapprove") || $thread['visible'] == -1 && !is_moderator($fid, "canviewdeleted") || ($thread['visible'] < -1 && $thread['uid'] != $mybb->user['uid'])) {
|
error($lang->error_invalidthread);
| if($thread['visible'] == 0 && !($mybb->settings['showownunapproved'] && $thread['uid'] == $mybb->user['uid'])) { error($lang->error_invalidthread); }
|
} if(!$forum || $forum['type'] != "f") {
| } if(!$forum || $forum['type'] != "f") {
|
Zeile 127 | Zeile 130 |
---|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
if($mybb->user['uid'] != $post['uid']) { error_no_permission(); } // User can't delete unapproved post if($post['visible'] == 0)
| if($mybb->user['uid'] != $post['uid']) { error_no_permission(); } // User can't delete unapproved post unless allowed for own if($post['visible'] == 0 && !($mybb->settings['showownunapproved'] && $post['uid'] == $mybb->user['uid']))
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 140 | Zeile 143 |
---|
if($post['visible'] == -1 && $mybb->settings['soft_delete'] == 1) { error($lang->error_already_deleted);
|
if($post['visible'] == -1 && $mybb->settings['soft_delete'] == 1) { error($lang->error_already_deleted);
|
}
| }
|
} elseif($mybb->input['action'] == "restorepost" && $mybb->request_method == "post") {
| } elseif($mybb->input['action'] == "restorepost" && $mybb->request_method == "post") {
|
Zeile 162 | Zeile 165 |
---|
error_no_permission(); } if($mybb->user['uid'] != $post['uid'])
|
error_no_permission(); } if($mybb->user['uid'] != $post['uid'])
|
{
| {
|
error_no_permission(); } // Edit time limit
| error_no_permission(); } // Edit time limit
|
Zeile 173 | Zeile 176 |
---|
error($lang->edit_time_limit); } // User can't edit unapproved post
|
error($lang->edit_time_limit); } // User can't edit unapproved post
|
if($post['visible'] == 0 || $post['visible'] == -1)
| if(($post['visible'] == 0 && !($mybb->settings['showownunapproved'] && $post['uid'] == $mybb->user['uid'])) || $post['visible'] == -1)
|
{ error_no_permission(); }
| { error_no_permission(); }
|
Zeile 186 | Zeile 189 |
---|
if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == '1') { error($lang->error_empty_post_input);
|
if((empty($_POST) && empty($_FILES)) && $mybb->get_input('processed', MyBB::INPUT_INT) == '1') { error($lang->error_empty_post_input);
|
}
| }
|
$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'])))
| $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'])))
|
Zeile 197 | Zeile 200 |
---|
if($pid) { $attachwhere = "pid='{$pid}'";
|
if($pid) { $attachwhere = "pid='{$pid}'";
|
}
| }
|
else
|
else
|
{
| {
|
$attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'"; }
|
$attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'"; }
|
|
|
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
if(!empty($ret['errors'])) { $errors = $ret['errors'];
|
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
if(!empty($ret['errors'])) { $errors = $ret['errors'];
|
}
| }
|
// Do we have attachment errors? if(!empty($errors))
|
// Do we have attachment 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.
|
$attacherror = inline_error($errors); }
// If we were dealing with an attachment but didn't click 'Update Post', force the post edit page again.
|
if(!isset($mybb->input['submit'])) { $mybb->input['action'] = "editpost";
| if(!isset($mybb->input['submit'])) { $mybb->input['action'] = "editpost";
|
} }
|
} }
|
|
|
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 { // Verify incoming POST request
| 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 { // Verify incoming POST request
|
Zeile 230 | Zeile 233 |
---|
$mybb->input['attachmentaid'] = $mybb->get_input('attachmentaid', MyBB::INPUT_INT); if($mybb->input['attachmentact'] == "remove")
|
$mybb->input['attachmentaid'] = $mybb->get_input('attachmentaid', MyBB::INPUT_INT); if($mybb->input['attachmentact'] == "remove")
|
{
| {
|
remove_attachment($pid, "", $mybb->input['attachmentaid']); } elseif($mybb->get_input('attachmentact') == "approve" && is_moderator($fid, 'canapproveunapproveattachs'))
| remove_attachment($pid, "", $mybb->input['attachmentaid']); } elseif($mybb->get_input('attachmentact') == "approve" && is_moderator($fid, 'canapproveunapproveattachs'))
|
Zeile 245 | Zeile 248 |
---|
$db->update_query("attachments", $update_sql, "aid='{$mybb->input['attachmentaid']}'"); update_thread_counters($post['tid'], array('attachmentcount' => "-1")); }
|
$db->update_query("attachments", $update_sql, "aid='{$mybb->input['attachmentaid']}'"); update_thread_counters($post['tid'], array('attachmentcount' => "-1")); }
|
| if($mybb->get_input('ajax', MyBB::INPUT_INT) == 1) { header("Content-type: application/json; charset={$lang->settings['charset']}"); echo json_encode(array("success" => true)); exit(); }
|
if(!isset($mybb->input['submit'])) { $mybb->input['action'] = "editpost";
| if(!isset($mybb->input['submit'])) { $mybb->input['action'] = "editpost";
|
Zeile 252 | Zeile 263 |
---|
}
if($mybb->input['action'] == "deletepost" && $mybb->request_method == "post")
|
}
if($mybb->input['action'] == "deletepost" && $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'));
|
Zeile 286 | Zeile 297 |
---|
$moderation->soft_delete_threads(array($tid)); log_moderator_action($modlogdata, $lang->thread_soft_deleted);
|
$moderation->soft_delete_threads(array($tid)); log_moderator_action($modlogdata, $lang->thread_soft_deleted);
|
}
| }
|
else { $moderation->delete_thread($tid);
| else { $moderation->delete_thread($tid);
|
Zeile 330 | Zeile 341 |
---|
$moderation->soft_delete_posts(array($pid)); log_moderator_action($modlogdata, $lang->post_soft_deleted);
|
$moderation->soft_delete_posts(array($pid)); log_moderator_action($modlogdata, $lang->post_soft_deleted);
|
}
| }
|
else { $moderation->delete_post($pid);
| else { $moderation->delete_post($pid);
|
Zeile 341 | Zeile 352 |
---|
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "desc")); $next_post = $db->fetch_array($query); if($next_post['pid'])
|
$query = $db->simple_select("posts", "pid", "tid='{$tid}' AND dateline <= '{$post['dateline']}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "desc")); $next_post = $db->fetch_array($query); if($next_post['pid'])
|
{
| {
|
$redirect = get_post_link($next_post['pid'], $tid)."#pid{$next_post['pid']}"; } else
| $redirect = get_post_link($next_post['pid'], $tid)."#pid{$next_post['pid']}"; } else
|
Zeile 609 | Zeile 620 |
---|
eval("\$attach_rem_options = \"".$templates->get("post_attachments_attachment_remove")."\";");
if($attachment['visible'] != 1)
|
eval("\$attach_rem_options = \"".$templates->get("post_attachments_attachment_remove")."\";");
if($attachment['visible'] != 1)
|
{
| {
|
eval("\$attachments .= \"".$templates->get("post_attachments_attachment_unapproved")."\";");
|
eval("\$attachments .= \"".$templates->get("post_attachments_attachment_unapproved")."\";");
|
}
| }
|
else { eval("\$attachments .= \"".$templates->get("post_attachments_attachment")."\";");
| else { eval("\$attachments .= \"".$templates->get("post_attachments_attachment")."\";");
|
Zeile 621 | Zeile 632 |
---|
$query = $db->simple_select("attachments", "SUM(filesize) AS ausage", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query); if($usage['ausage'] > ($mybb->usergroup['attachquota']*1024) && $mybb->usergroup['attachquota'] != 0)
|
$query = $db->simple_select("attachments", "SUM(filesize) AS ausage", "uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query); if($usage['ausage'] > ($mybb->usergroup['attachquota']*1024) && $mybb->usergroup['attachquota'] != 0)
|
{
| {
|
$noshowattach = 1;
|
$noshowattach = 1;
|
} else { $noshowattach = 0;
| } else { $noshowattach = 0;
|
} if($mybb->usergroup['attachquota'] == 0) { $friendlyquota = $lang->unlimited;
|
} if($mybb->usergroup['attachquota'] == 0) { $friendlyquota = $lang->unlimited;
|
} else {
| } else {
|
$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->settings['maxattachments'] == 0 || ($mybb->settings['maxattachments'] != 0 && $attachcount < $mybb->settings['maxattachments']) && !$noshowattach) { eval("\$attach_add_options = \"".$templates->get("post_attachments_add")."\";");
|
Zeile 666 | Zeile 689 |
---|
$subject = $mybb->get_input('subject'); $reason = htmlspecialchars_uni($mybb->get_input('editreason')); }
|
$subject = $mybb->get_input('subject'); $reason = htmlspecialchars_uni($mybb->get_input('editreason')); }
|
| $previewmessage = $message; $previewsubject = $subject; $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
|
if(!isset($post_errors)) {
| if(!isset($post_errors)) {
|
Zeile 700 | Zeile 728 |
---|
$postoptions['signature'] = 0; } if(!isset($postoptions['emailnotify']))
|
$postoptions['signature'] = 0; } if(!isset($postoptions['emailnotify']))
|
{
| {
|
$postoptions['emailnotify'] = 0; } if(!isset($postoptions['disablesmilies']))
| $postoptions['emailnotify'] = 0; } if(!isset($postoptions['disablesmilies']))
|
Zeile 727 | Zeile 755 |
---|
} else {
|
} else {
|
$previewmessage = $message; $previewsubject = $subject; $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
| |
$postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY);
if(isset($postoptions['signature']) && $postoptions['signature'] == 1) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
$postoptions = $mybb->get_input('postoptions', MyBB::INPUT_ARRAY);
if(isset($postoptions['signature']) && $postoptions['signature'] == 1) { $postoptionschecked['signature'] = " checked=\"checked\"";
|
}
| }
|
if(isset($postoptions['disablesmilies']) && $postoptions['disablesmilies'] == 1) { $postoptionschecked['disablesmilies'] = " checked=\"checked\"";
| if(isset($postoptions['disablesmilies']) && $postoptions['disablesmilies'] == 1) { $postoptionschecked['disablesmilies'] = " checked=\"checked\"";
|
Zeile 793 | Zeile 817 |
---|
} else if(!$post_errors) {
|
} else if(!$post_errors) {
|
$message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
| |
$preview = '';
if($post['includesig'] != 0)
| $preview = '';
if($post['includesig'] != 0)
|