Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: post.php 4092 2008-08-10 03:03:04Z Tikitiki $
| * $Id: post.php 4328 2009-03-09 21:58:37Z Tikitiki $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 309 | Zeile 309 |
---|
global $mybb, $db, $session; $post = &$this->data;
|
global $mybb, $db, $session; $post = &$this->data;
|
| // Are we starting a new thread? if(!$post['tid']) { return true; }
|
// Are we even turned on? if(empty($mybb->settings['postmergemins']))
| // Are we even turned on? if(empty($mybb->settings['postmergemins']))
|
Zeile 326 | Zeile 332 |
---|
if(trim($mybb->settings['postmergeuignore']) != "") { $gids = explode(',', $mybb->settings['postmergeuignore']);
|
if(trim($mybb->settings['postmergeuignore']) != "") { $gids = explode(',', $mybb->settings['postmergeuignore']);
|
array_walk($gids, 'intval');
| $gids = array_map('intval', $gids);
|
$user_usergroups = explode(',', $mybb->user['usergroup'].",".$mybb->user['additionalgroups']);
| $user_usergroups = explode(',', $mybb->user['usergroup'].",".$mybb->user['additionalgroups']);
|
Zeile 449 | Zeile 455 |
---|
// Check if the post being replied to actually exists in this thread. if($post['replyto']) {
|
// Check if the post being replied to actually exists in this thread. if($post['replyto']) {
|
$query = $db->simple_select("posts", "pid", "pid='{$post['replyto']}'");
| $query = $db->simple_select("posts", "pid", "pid='".intval($post['replyto'])."'");
|
$valid_post = $db->fetch_array($query); if(!$valid_post['pid']) {
| $valid_post = $db->fetch_array($query); if(!$valid_post['pid']) {
|
Zeile 566 | Zeile 572 |
---|
}
if($this->method == "insert" || array_key_exists('options', $post))
|
}
if($this->method == "insert" || array_key_exists('options', $post))
|
{ $this->verify_options(); }
$plugins->run_hooks_by_ref("datahandler_post_validate_post", $this);
// We are done validating, return. $this->set_validated(true); if(count($this->get_errors()) > 0) { return false; } else { return true; } }
| { $this->verify_options(); }
$plugins->run_hooks_by_ref("datahandler_post_validate_post", $this);
// We are done validating, return. $this->set_validated(true); if(count($this->get_errors()) > 0) { return false; } else { return true; } }
|
/** * Insert a post into the database.
| /** * Insert a post into the database.
|
Zeile 867 | Zeile 873 |
---|
continue; } $done_users[$subscribedmember['uid']] = 1;
|
continue; } $done_users[$subscribedmember['uid']] = 1;
|
| $forumpermissions = forum_permissions($thread['fid'], $subscribedmember['uid']); if($forumpermissions['canview'] == 0 || $forumpermissions['canviewthreads'] == 0) { continue; }
|
if($subscribedmember['language'] != '' && $lang->language_exists($subscribedmember['language'])) { $uselang = $subscribedmember['language'];
| if($subscribedmember['language'] != '' && $lang->language_exists($subscribedmember['language'])) { $uselang = $subscribedmember['language'];
|
Zeile 1125 | Zeile 1138 |
---|
);
$plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this);
|
);
$plugins->run_hooks_by_ref("datahandler_post_insert_thread", $this);
|
|
|
$this->tid = $db->insert_query("threads", $this->thread_insert_data);
$this->post_insert_data = array(
| $this->tid = $db->insert_query("threads", $this->thread_insert_data);
$this->post_insert_data = array(
|
Zeile 1182 | Zeile 1195 |
---|
// Close the thread. if($modoptions['closethread'] == 1)
|
// Close the thread. if($modoptions['closethread'] == 1)
|
{
| {
|
$newclosed = "closed=1"; log_moderator_action($modlogdata, $lang->thread_closed);
|
$newclosed = "closed=1"; log_moderator_action($modlogdata, $lang->thread_closed);
|
}
| }
|
// Stick the thread. if($modoptions['stickthread'] == 1) {
| // Stick the thread. if($modoptions['stickthread'] == 1) {
|
Zeile 1196 | Zeile 1209 |
---|
// Execute moderation options. if($newstick && $newclosed)
|
// Execute moderation options. if($newstick && $newclosed)
|
{
| {
|
$sep = ","; } if($newstick || $newclosed)
| $sep = ","; } if($newstick || $newclosed)
|
Zeile 1224 | Zeile 1237 |
---|
if($forum['usepostcounts'] != 0) { $update_query[] = "postnum=postnum+1";
|
if($forum['usepostcounts'] != 0) { $update_query[] = "postnum=postnum+1";
|
}
| }
|
// Only update the table if we need to. if(!empty($update_query))
| // Only update the table if we need to. if(!empty($update_query))
|
Zeile 1232 | Zeile 1245 |
---|
$update_query = implode(", ", $update_query); $db->write_query("UPDATE ".TABLE_PREFIX."users SET $update_query WHERE uid='".$thread['uid']."'"); }
|
$update_query = implode(", ", $update_query); $db->write_query("UPDATE ".TABLE_PREFIX."users SET $update_query WHERE uid='".$thread['uid']."'"); }
|
}
| }
|
if(!$forum['lastpost']) { $forum['lastpost'] = 0; }
|
if(!$forum['lastpost']) { $forum['lastpost'] = 0; }
|
| $done_users = array();
|
// Queue up any forum subscription notices to users who are subscribed to this forum. $excerpt = my_substr($thread['message'], 0, $mybb->settings['subscribeexcerpt']).$lang->emailbit_viewthread;
| // Queue up any forum subscription notices to users who are subscribed to this forum. $excerpt = my_substr($thread['message'], 0, $mybb->settings['subscribeexcerpt']).$lang->emailbit_viewthread;
|
Zeile 1264 | Zeile 1279 |
---|
continue; } $done_users[$subscribedmember['uid']] = 1;
|
continue; } $done_users[$subscribedmember['uid']] = 1;
|
| $forumpermissions = forum_permissions($thread['fid'], $subscribedmember['uid']); if($forumpermissions['canview'] == 0 || $forumpermissions['canviewthreads'] == 0) { continue; }
|
// Determine the language pack we'll be using to send this email in and load it if it isn't already. if($subscribedmember['language'] != '' && $lang->language_exists($subscribedmember['language'])) {
| // Determine the language pack we'll be using to send this email in and load it if it isn't already. if($subscribedmember['language'] != '' && $lang->language_exists($subscribedmember['language'])) {
|
Zeile 1331 | Zeile 1353 |
---|
if($visible == 1) {
|
if($visible == 1) {
|
$query = $db->simple_select("attachments", "COUNT(aid) AS attachmentcount", "pid='{$this->pid}' AND visible='1'"); $attachmentcount = $db->fetch_field($query, "attachmentcount"); if($attachmentcount > 0) { update_thread_counters($this->tid, array("attachmentcount" => "+{$attachmentcount}")); }
| |
update_thread_data($this->tid); update_forum_counters($thread['fid'], array("threads" => "+1", "posts" => "+1")); }
| update_thread_data($this->tid); update_forum_counters($thread['fid'], array("threads" => "+1", "posts" => "+1")); }
|
Zeile 1346 | Zeile 1361 |
---|
update_thread_data($this->tid); update_thread_counters($thread['tid'], array("replies" => 0, "unapprovedposts" => 1)); update_forum_counters($thread['fid'], array("unapprovedthreads" => "+1", "unapprovedposts" => "+1"));
|
update_thread_data($this->tid); update_thread_counters($thread['tid'], array("replies" => 0, "unapprovedposts" => 1)); update_forum_counters($thread['fid'], array("unapprovedthreads" => "+1", "unapprovedposts" => "+1"));
|
| } $query = $db->simple_select("attachments", "COUNT(aid) AS attachmentcount", "pid='{$this->pid}' AND visible='1'"); $attachmentcount = $db->fetch_field($query, "attachmentcount"); if($attachmentcount > 0) { update_thread_counters($this->tid, array("attachmentcount" => "+{$attachmentcount}"));
|
}
// Return the post's pid and whether or not it is visible.
| }
// Return the post's pid and whether or not it is visible.
|
Zeile 1372 | Zeile 1394 |
---|
if(count($this->get_errors()) > 0) { die("The post is not valid.");
|
if(count($this->get_errors()) > 0) { die("The post is not valid.");
|
}
$post = &$this->data;
| }
$post = &$this->data;
|
$post['pid'] = intval($post['pid']);
|
$post['pid'] = intval($post['pid']);
|
|
|
$existing_post = get_post($post['pid']); $post['tid'] = $existing_post['tid']; $post['fid'] = $existing_post['fid'];
| $existing_post = get_post($post['pid']); $post['tid'] = $existing_post['tid']; $post['fid'] = $existing_post['fid'];
|
Zeile 1385 | Zeile 1407 |
---|
$forum = get_forum($post['fid']);
// Decide on the visibility of this post.
|
$forum = get_forum($post['fid']);
// Decide on the visibility of this post.
|
if($forum['mod_edit_posts'] == 1 && !is_moderator($post['fid'], "", $post['uid'])) { if($existing_post['visible'] == 1) { update_thread_data($existing_post['tid']); update_thread_counters($existing_post['tid'], array('replies' => '-1', 'unapprovedposts' => '+1')); update_forum_counters($existing_post['fid'], array('unapprovedthreads' => '+1', 'unapprovedposts' => '+1')); // Subtract from the users post count // Update the post count if this forum allows post counts to be tracked if($forum['usepostcounts'] != 0) { $db->write_query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum-1 WHERE uid='{$existing_post['uid']}'"); } }
| if(isset($post['visible']) && $post['visible'] != $existing_post['visible']) { if($forum['mod_edit_posts'] == 1 && !is_moderator($post['fid'], "", $post['uid'])) { if($existing_post['visible'] == 1) { update_thread_data($existing_post['tid']); update_thread_counters($existing_post['tid'], array('replies' => '-1', 'unapprovedposts' => '+1')); update_forum_counters($existing_post['fid'], array('unapprovedthreads' => '+1', 'unapprovedposts' => '+1')); // Subtract from the users post count // Update the post count if this forum allows post counts to be tracked if($forum['usepostcounts'] != 0) { $db->write_query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum-1 WHERE uid='{$existing_post['uid']}'"); } } $visible = 0; } else { if($existing_post['visible'] == 0) { update_thread_data($existing_post['tid']); update_thread_counters($existing_post['tid'], array('replies' => '+1', 'unapprovedposts' => '-1')); update_forum_counters($existing_post['fid'], array('unapprovedthreads' => '-1', 'unapprovedposts' => '-1')); // Update the post count if this forum allows post counts to be tracked if($forum['usepostcounts'] != 0) { $db->write_query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+1 WHERE uid='{$existing_post['uid']}'"); } } $visible = 1; } } else {
|
$visible = 0;
|
$visible = 0;
|
} else { if($existing_post['visible'] == 0)
| if($forum['mod_edit_posts'] != 1 || is_moderator($post['fid'], "", $post['uid']))
|
{
|
{
|
update_thread_data($existing_post['tid']); update_thread_counters($existing_post['tid'], array('replies' => '+1', 'unapprovedposts' => '-1')); update_forum_counters($existing_post['fid'], array('unapprovedthreads' => '-1', 'unapprovedposts' => '-1')); // Update the post count if this forum allows post counts to be tracked if($forum['usepostcounts'] != 0) { $db->write_query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+1 WHERE uid='{$existing_post['uid']}'"); }
| $visible = 1;
|
}
|
}
|
$visible = 1; }
| }
|
// Check if this is the first post in a thread. $options = array(
| // Check if this is the first post in a thread. $options = array(
|
Zeile 1526 | Zeile 1559 |
---|
} else {
|
} else {
|
$db->delete_query("threadsubscriptions", "uid='{$post['uid']}' AND tid='{$post['tid']}'");
| $db->delete_query("threadsubscriptions", "uid='".intval($post['uid'])."' AND tid='".intval($post['tid'])."'");
|
}
update_forum_lastpost($post['fid']);
| }
update_forum_lastpost($post['fid']);
|