Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html *
|
* $Id: editpost.php 2263 2006-09-26 09:24:25Z chris $
| * $Id: editpost.php 2749 2007-02-10 13:33:47Z CraKteR $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 195 | Zeile 195 |
---|
delete_thread($tid); update_forum_count($fid); mark_reports($tid, "thread");
|
delete_thread($tid); update_forum_count($fid); 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 215 | Zeile 212 |
---|
update_thread_count($tid); update_forum_count($fid); mark_reports($pid, "post");
|
update_thread_count($tid); update_forum_count($fid); 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 337 | Zeile 331 |
---|
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'])
| if($posthash)
|
{
|
{
|
$posthash = "posthash='{$posthash}' OR ";
| $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 = ''; while($attachment = $db->fetch_array($query)) {
| $attachments = ''; while($attachment = $db->fetch_array($query)) {
|
Zeile 423 | Zeile 417 |
---|
if($mybb->input['previewpost'] || $post_errors) { $previewmessage = $message;
|
if($mybb->input['previewpost'] || $post_errors) { $previewmessage = $message;
|
$message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
$postoptions = $mybb->input['postoptions'];
| $message = htmlspecialchars_uni($message); $subject = htmlspecialchars_uni($subject);
$postoptions = $mybb->input['postoptions'];
|
if($postoptions['signature'] == "yes") {
| if($postoptions['signature'] == "yes") {
|
Zeile 487 | Zeile 481 |
---|
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 488 |
---|
{ $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");
|