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 113 | Zeile 116 |
---|
if(!$mybb->input['action'] || isset($mybb->input['previewpost'])) { $mybb->input['action'] = "editpost";
|
if(!$mybb->input['action'] || isset($mybb->input['previewpost'])) { $mybb->input['action'] = "editpost";
|
}
| }
|
if($mybb->input['action'] == "deletepost" && $mybb->request_method == "post") { if(!is_moderator($fid, "candeleteposts") && !is_moderator($fid, "cansoftdeleteposts") && $pid != $thread['firstpost'] || !is_moderator($fid, "candeletethreads") && !is_moderator($fid, "cansoftdeletethreads") && $pid == $thread['firstpost'])
| if($mybb->input['action'] == "deletepost" && $mybb->request_method == "post") { if(!is_moderator($fid, "candeleteposts") && !is_moderator($fid, "cansoftdeleteposts") && $pid != $thread['firstpost'] || !is_moderator($fid, "candeletethreads") && !is_moderator($fid, "cansoftdeletethreads") && $pid == $thread['firstpost'])
|
Zeile 131 | Zeile 134 |
---|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
// User can't delete unapproved post if($post['visible'] == 0)
| // 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 158 | Zeile 161 |
---|
error($lang->redirect_threadclosed); } if($forumpermissions['caneditposts'] == 0)
|
error($lang->redirect_threadclosed); } if($forumpermissions['caneditposts'] == 0)
|
{
| {
|
error_no_permission(); } if($mybb->user['uid'] != $post['uid'])
| error_no_permission(); } if($mybb->user['uid'] != $post['uid'])
|
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 197 | Zeile 200 |
---|
if($pid) { $attachwhere = "pid='{$pid}'";
|
if($pid) { $attachwhere = "pid='{$pid}'";
|
} else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'"; }
| } else { $attachwhere = "posthash='".$db->escape_string($mybb->get_input('posthash'))."'"; }
|
$ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
if(!empty($ret['errors']))
| $ret = add_attachments($pid, $forumpermissions, $attachwhere, "editpost");
if(!empty($ret['errors']))
|
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";
|