Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: editpost.php 2263 2006-09-26 09:24:25Z chris $
| * $Id: editpost.php 3055 2007-05-13 15:01:15Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 193 | Zeile 193 |
---|
if($forumpermissions['candeletethreads'] == "yes") { delete_thread($tid);
|
if($forumpermissions['candeletethreads'] == "yes") { delete_thread($tid);
|
update_forum_count($fid);
| |
mark_reports($tid, "thread");
|
mark_reports($tid, "thread");
|
if(is_moderator($fid, "candeleteposts") != "yes") { log_moderator_action($modlogdata, "Deleted Thread"); }
| log_moderator_action($modlogdata, "Deleted Thread");
|
redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);
|
redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);
|
}
| }
|
else
|
else
|
{
| {
|
error_no_permission(); } }
| error_no_permission(); } }
|
Zeile 212 | Zeile 208 |
---|
{ // Select the first post before this delete_post($pid, $tid);
|
{ // Select the first post before this delete_post($pid, $tid);
|
update_thread_count($tid); update_forum_count($fid);
| |
mark_reports($pid, "post");
|
mark_reports($pid, "post");
|
if(is_moderator($fid, "candeleteposts") != "yes") { log_moderator_action($modlogdata, "Deleted Post"); }
| log_moderator_action($modlogdata, "Deleted Post");
|
$query = $db->simple_select(TABLE_PREFIX."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(TABLE_PREFIX."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'])
|
Zeile 309 | Zeile 300 |
---|
if(!$mybb->input['action'] || $mybb->input['action'] == "editpost") { $plugins->run_hooks("editpost_start");
|
if(!$mybb->input['action'] || $mybb->input['action'] == "editpost") { $plugins->run_hooks("editpost_start");
|
|
|
if(!$mybb->input['previewpost']) { $icon = $post['icon'];
|
if(!$mybb->input['previewpost']) { $icon = $post['icon'];
|
}
| }
|
if($forum['allowpicons'] != "no") {
| if($forum['allowpicons'] != "no") {
|
Zeile 321 | Zeile 312 |
---|
}
if($mybb->user['uid'] != 0)
|
}
if($mybb->user['uid'] != 0)
|
{
| {
|
eval("\$loginbox = \"".$templates->get("changeuserbox")."\";"); } else
| eval("\$loginbox = \"".$templates->get("changeuserbox")."\";"); } else
|
Zeile 337 | Zeile 328 |
---|
if($forumpermissions['canpostattachments'] != "no") { // Get a listing of the current attachments, if there are any $attachcount = 0;
|
if($forumpermissions['canpostattachments'] != "no") { // Get a listing of the current attachments, if there are any $attachcount = 0;
|
if($mybb->input['posthash']) { $posthash = "posthash='{$posthash}' OR "; }
| if($posthash) { $posthash_query = "posthash='{$posthash}' OR "; }
|
else {
|
else {
|
$posthash = "";
| $posthash_query = "";
|
}
|
}
|
$query = $db->simple_select(TABLE_PREFIX."attachments", "*", "{$posthash}pid='{$pid}'");
| $query = $db->simple_select(TABLE_PREFIX."attachments", "*", "{$posthash_query}pid='{$pid}'");
|
$attachments = '';
|
$attachments = '';
|
while($attachment = $db->fetch_array($query))
| while($attachment = $db->fetch_array($query))
|
{ $attachment['size'] = get_friendly_size($attachment['filesize']); $attachment['icon'] = get_attachment_icon(get_extension($attachment['filename']));
| { $attachment['size'] = get_friendly_size($attachment['filesize']); $attachment['icon'] = get_attachment_icon(get_extension($attachment['filename']));
|
Zeile 360 | Zeile 351 |
---|
if(is_moderator($fid) == "yes") { if($attachment['visible'] == 1)
|
if(is_moderator($fid) == "yes") { if($attachment['visible'] == 1)
|
{
| {
|
eval("\$attach_mod_options = \"".$templates->get("post_attachments_attachment_mod_unapprove")."\";"); } else
| eval("\$attach_mod_options = \"".$templates->get("post_attachments_attachment_mod_unapprove")."\";"); } else
|
Zeile 377 | Zeile 368 |
---|
eval("\$attachments .= \"".$templates->get("post_attachments_attachment")."\";"); } $attachcount++;
|
eval("\$attachments .= \"".$templates->get("post_attachments_attachment")."\";"); } $attachcount++;
|
}
| }
|
$query = $db->query("SELECT SUM(filesize) AS ausage FROM ".TABLE_PREFIX."attachments WHERE uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query);
|
$query = $db->query("SELECT SUM(filesize) AS ausage FROM ".TABLE_PREFIX."attachments WHERE uid='".$mybb->user['uid']."'"); $usage = $db->fetch_array($query);
|
if($usage['ausage'] > ($mybb->usergroup['attachquota']*1000) && $mybb->usergroup['attachquota'] != 0)
| if($usage['ausage'] > ($mybb->usergroup['attachquota']*1024) && $mybb->usergroup['attachquota'] != 0)
|
{ $noshowattach = 1;
|
{ $noshowattach = 1;
|
}
| }
|
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']*1000);
| $friendlyquota = get_friendly_size($mybb->usergroup['attachquota']*1024);
|
} $friendlyusage = get_friendly_size($usage['ausage']); $lang->attach_quota = sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);
| } $friendlyusage = get_friendly_size($usage['ausage']); $lang->attach_quota = sprintf($lang->attach_quota, $friendlyusage, $friendlyquota);
|
Zeile 409 | Zeile 400 |
---|
{ $message = $mybb->input['message']; $subject = $mybb->input['subject'];
|
{ $message = $mybb->input['message']; $subject = $mybb->input['subject'];
|
}
| }
|
$query = $db->simple_select(TABLE_PREFIX."posts", "*", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "asc")); $firstcheck = $db->fetch_array($query);
| $query = $db->simple_select(TABLE_PREFIX."posts", "*", "tid='{$tid}'", array("limit" => 1, "order_by" => "dateline", "order_dir" => "asc")); $firstcheck = $db->fetch_array($query);
|
Zeile 418 | Zeile 409 |
---|
$lang->max_options = sprintf($lang->max_options, $mybb->settings['maxpolloptions']); $numpolloptions = "2"; eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
|
$lang->max_options = sprintf($lang->max_options, $mybb->settings['maxpolloptions']); $numpolloptions = "2"; eval("\$pollbox = \"".$templates->get("newthread_postpoll")."\";");
|
}
if($mybb->input['previewpost'] || $post_errors)
| }
if($mybb->input['previewpost'] && !$post_errors)
|
{
|
{
|
$previewmessage = $message; $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
$postoptions = $mybb->input['postoptions'];
if($postoptions['signature'] == "yes") { $postoptionschecked['signature'] = "checked=\"checked\""; } if($postoptions['emailnotify'] == "yes") { $postoptionschecked['emailnotify'] = "checked=\"checked\""; } if($postoptions['disablesmilies'] == "yes")
| // Set up posthandler. 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'], "subject" => $mybb->input['subject'], "icon" => $mybb->input['icon'], "uid" => $mybb->user['uid'], "username" => $mybb->user['username'], "edit_uid" => $mybb->user['uid'], "message" => $mybb->input['message'], ); // Set up the post options from the input. $post['options'] = array( "signature" => $mybb->input['postoptions']['signature'], "emailnotify" => $mybb->input['postoptions']['emailnotify'], "disablesmilies" => $mybb->input['postoptions']['disablesmilies'] ); $posthandler->set_data($post); // Now let the post handler do all the hard work. if(!$posthandler->validate_post())
|
{
|
{
|
$postoptionschecked['disablesmilies'] = "checked=\"checked\"";
| $post_errors = $posthandler->get_friendly_errors(); $post_errors = inline_error($post_errors); $mybb->input['action'] = "editpost"; $mybb->input['previewpost'] = 0; } else { $previewmessage = $message; $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject); $postoptions = $mybb->input['postoptions']; if($postoptions['signature'] == "yes") { $postoptionschecked['signature'] = "checked=\"checked\""; } if($postoptions['emailnotify'] == "yes") { $postoptionschecked['emailnotify'] = "checked=\"checked\""; } if($postoptions['disablesmilies'] == "yes") { $postoptionschecked['disablesmilies'] = "checked=\"checked\""; } $pid = intval($mybb->input['pid']);
|
}
|
}
|
$pid = intval($mybb->input['pid']);
| |
}
if($mybb->input['previewpost'])
| }
if($mybb->input['previewpost'])
|
Zeile 475 | Zeile 502 |
---|
$postbit = build_postbit($postinfo, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
|
$postbit = build_postbit($postinfo, 1); eval("\$preview = \"".$templates->get("previewpost")."\";"); }
|
elseif(!$post_errors)
| else if(!$post_errors)
|
{ $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
| { $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
|
Zeile 487 | Zeile 514 |
---|
if($post['smilieoff'] == "yes") { $postoptionschecked['disablesmilies'] = "checked=\"checked\"";
|
if($post['smilieoff'] == "yes") { $postoptionschecked['disablesmilies'] = "checked=\"checked\"";
|
} // Can we disable smilies or are they disabled already? if($forum['allowsmilies'] != "no") { eval("\$disablesmilies = \"".$templates->get("editpost_disablesmilies")."\";"); } else { $disablesmilies = "<input type=\"hidden\" name=\"postoptions[disablesmilies]\" value=\"no\" />";
| |
} $query = $db->simple_select(TABLE_PREFIX."favorites", "*", "type='s' AND tid='{$tid}' AND uid='{$mybb->user['uid']}'"); $subcheck = $db->fetch_array($query);
| } $query = $db->simple_select(TABLE_PREFIX."favorites", "*", "type='s' AND tid='{$tid}' AND uid='{$mybb->user['uid']}'"); $subcheck = $db->fetch_array($query);
|
Zeile 503 | Zeile 521 |
---|
{ $postoptionschecked['emailnotify'] = "checked=\"checked\""; }
|
{ $postoptionschecked['emailnotify'] = "checked=\"checked\""; }
|
| }
// Can we disable smilies or are they disabled already? if($forum['allowsmilies'] != "no") { eval("\$disablesmilies = \"".$templates->get("editpost_disablesmilies")."\";"); } else { $disablesmilies = "<input type=\"hidden\" name=\"postoptions[disablesmilies]\" value=\"no\" />";
|
}
$plugins->run_hooks("editpost_end");
| }
$plugins->run_hooks("editpost_end");
|