Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html *
|
* $Id: class_moderation.php 3171 2007-06-29 04:57:39Z chris $
| * $Id: class_moderation.php 3532 2007-12-02 01:30:41Z Tikitiki $
|
*/
class Moderation
| */
class Moderation
|
Zeile 144 | Zeile 144 |
---|
global $db, $cache, $plugins; $thread = get_thread($tid);
|
global $db, $cache, $plugins; $thread = get_thread($tid);
|
| $userposts = array();
|
// Find the pid, uid, visibility, and forum post count status $query = $db->query("
| // Find the pid, uid, visibility, and forum post count status $query = $db->query("
|
Zeile 186 | Zeile 188 |
---|
if($usepostcounts != "no") { if(is_array($userposts))
|
if($usepostcounts != "no") { if(is_array($userposts))
|
{
| {
|
foreach($userposts as $uid => $subtract) { $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum$subtract WHERE uid='$uid'");
| foreach($userposts as $uid => $subtract) { $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum$subtract WHERE uid='$uid'");
|
Zeile 216 | Zeile 218 |
---|
$db->delete_query(TABLE_PREFIX."favorites", "tid='$tid'"); $db->delete_query(TABLE_PREFIX."polls", "tid='$tid'"); $db->delete_query(TABLE_PREFIX."pollvotes", "pid='".$thread['poll']."'");
|
$db->delete_query(TABLE_PREFIX."favorites", "tid='$tid'"); $db->delete_query(TABLE_PREFIX."polls", "tid='$tid'"); $db->delete_query(TABLE_PREFIX."pollvotes", "pid='".$thread['poll']."'");
|
$updated_counters = array(
| $updated_counters = array(
|
"posts" => "-{$num_approved_posts}", "unapprovedposts" => "-{$num_unapproved_posts}"
|
"posts" => "-{$num_approved_posts}", "unapprovedposts" => "-{$num_unapproved_posts}"
|
); if($thread['visible'] == 1) { $updated_counters['threads'] = -1; } else { $updated_counters['unapprovedthreads'] = -1; }
| ); if($thread['visible'] == 1) { $updated_counters['threads'] = -1; } else { $updated_counters['unapprovedthreads'] = -1; }
|
if(substr($thread['closed'], 0, 5) != "moved")
|
if(substr($thread['closed'], 0, 5) != "moved")
|
{
| {
|
// Update forum count update_forum_counters($thread['fid'], $updated_counters);
|
// Update forum count update_forum_counters($thread['fid'], $updated_counters);
|
}
| }
|
$plugins->run_hooks("class_moderation_delete_thread", $tid);
| $plugins->run_hooks("class_moderation_delete_thread", $tid);
|
Zeile 278 | Zeile 280 |
---|
{ $tids = array($tids); }
|
{ $tids = array($tids); }
|
$tid_list = implode(",", $tids);
| |
$num_threads = $num_posts = 0; foreach($tids as $tid) {
|
$num_threads = $num_posts = 0; foreach($tids as $tid) {
|
$thread = get_thread($tid);
| $thread = get_thread($tid); if($thread['visible'] == 1 || !$thread['tid']) { continue; } $tid_list[] = $thread['tid'];
$forum = get_forum($thread['tid']);
|
|
|
if($thread['visible'] == 0) { $num_threads++; $num_posts += $thread['replies']+1; // Remove implied visible from count } $query = $db->query(" SELECT p.tid, f.usepostcounts, p.uid, p.visible FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=p.fid) WHERE p.tid='$tid' AND p.visible = '0' "); while($post = $db->fetch_array($query))
| $num_threads++; $num_posts += $thread['replies']+1; // Remove implied visible from count if($forum['usepostcounts'] != "no")
|
{
|
{
|
// If post counts enabled in this forum and the post hasn't already been approved, remove 1 if($post['usepostcounts'] != "no")
| // On approving thread restore user post counts $query = $db->simple_select(TABLE_PREFIX."posts", "COUNT(pid) as posts, uid", "tid='{$tid}' AND (visible='1' OR pid='{$thread['firstpost']}') AND uid > 0 GROUP BY uid"); while($counter = $db->fetch_array($query))
|
{
|
{
|
$db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+1 WHERE uid='".$post['uid']."'");
| $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+{$counter['posts']} WHERE uid='".$counter['uid']."'");
|
} } $posts_to_approve[] = $thread['firstpost'];
}
|
} } $posts_to_approve[] = $thread['firstpost'];
}
|
$approve = array( "visible" => 1, ); $db->update_query(TABLE_PREFIX."threads", $approve, "tid IN ($tid_list)"); $db->update_query(TABLE_PREFIX."posts", $approve, "tid IN (".implode(",", $posts_to_approve).")");
$plugins->run_hooks("class_moderation_approve_threads", $tids); // Update stats $update_array = array( "threads" => "+{$num_threads}", "unapprovedthreads" => "-{$num_threads}", "posts" => "+{$num_posts}", "unapprovedposts" => "-{$num_posts}" ); update_forum_counters($fid, $update_array);
| if(is_array($tid_list)) { $tid_list = implode(",", $tid_list);
$approve = array( "visible" => 1, ); $db->update_query(TABLE_PREFIX."threads", $approve, "tid IN ($tid_list)"); $db->update_query(TABLE_PREFIX."posts", $approve, "pid IN (".implode(",", $posts_to_approve).")");
$plugins->run_hooks("class_moderation_approve_threads", $tids); // Update stats $update_array = array( "threads" => "+{$num_threads}", "unapprovedthreads" => "-{$num_threads}", "posts" => "+{$num_posts}", "unapprovedposts" => "-{$num_posts}" ); update_forum_counters($fid, $update_array); }
|
return true; }
| return true; }
|
Zeile 336 | Zeile 341 |
---|
* @return boolean true */ function unapprove_threads($tids, $fid)
|
* @return boolean true */ function unapprove_threads($tids, $fid)
|
{ global $db, $cache, $plugins;
| { global $db, $cache, $plugins;
|
if(!is_array($tids)) {
| if(!is_array($tids)) {
|
Zeile 376 | Zeile 381 |
---|
"visible" => 0, ); $db->update_query(TABLE_PREFIX."threads", $approve, "tid IN ($tid_list)");
|
"visible" => 0, ); $db->update_query(TABLE_PREFIX."threads", $approve, "tid IN ($tid_list)");
|
$db->update_query(TABLE_PREFIX."posts", $approve, "tid IN (".implode(",", $posts_to_unapprove).")");
| $db->update_query(TABLE_PREFIX."posts", $approve, "pid IN (".implode(",", $posts_to_unapprove).")");
|
$plugins->run_hooks("class_moderation_unapprove_threads", $tids);
| $plugins->run_hooks("class_moderation_unapprove_threads", $tids);
|
Zeile 401 | Zeile 406 |
---|
function delete_post($pid) { global $db, $cache, $plugins;
|
function delete_post($pid) { global $db, $cache, $plugins;
|
|
|
// Get pid, uid, fid, tid, visibility, forum post count status of post $query = $db->query(" SELECT p.pid, p.uid, p.fid, p.tid, p.visible, f.usepostcounts
| // Get pid, uid, fid, tid, visibility, forum post count status of post $query = $db->query(" SELECT p.pid, p.uid, p.fid, p.tid, p.visible, f.usepostcounts
|
Zeile 506 | Zeile 511 |
---|
$num_approved_posts++; } elseif($post['visible'] == 0)
|
$num_approved_posts++; } elseif($post['visible'] == 0)
|
{
| {
|
$num_unapproved_posts++; } }
| $num_unapproved_posts++; } }
|
Zeile 586 | Zeile 591 |
---|
$num_posts = $thread['replies']+1; $num_unapproved_posts += $thread['unapprovedposts'];
|
$num_posts = $thread['replies']+1; $num_unapproved_posts += $thread['unapprovedposts'];
|
$db->delete_query(TABLE_PREFIX."threads", "closed='moved|$tid' AND fid='$moveto'");
| $db->delete_query(TABLE_PREFIX."threads", "closed='moved|$tid' AND fid='{$new_fid}'");
|
$changefid = array( "fid" => $new_fid, );
| $changefid = array( "fid" => $new_fid, );
|
Zeile 634 | Zeile 639 |
---|
"sticky" => $thread['sticky'], "visible" => $thread['visible'], "unapprovedposts" => $thread['unapprovedposts'],
|
"sticky" => $thread['sticky'], "visible" => $thread['visible'], "unapprovedposts" => $thread['unapprovedposts'],
|
| "attachmentcount" => $thread['attachmentcount'],
|
"notes" => '' );
|
"notes" => '' );
|
|
|
if($thread['visible'] == 1)
|
if($thread['visible'] == 1)
|
{
| {
|
++$num_threads;
|
++$num_threads;
|
| $num_posts = $thread['replies']+1;
// Fetch count of unapproved posts in this thread $query = $db->simple_select(TABLE_PREFIX."posts", "COUNT(pid) AS unapproved", "tid='{$thread['tid']}' AND visible=0"); $num_unapproved_posts = $db->fetch_field($query, "unapproved");
|
} else { $num_unapproved_threads++;
|
} else { $num_unapproved_threads++;
|
// Implied forum unapproved count for unapproved threads
| |
$num_unapproved_posts = $thread['replies']+1; }
| $num_unapproved_posts = $thread['replies']+1; }
|
Zeile 838 | Zeile 850 |
---|
$tid = intval($tid);
if(!isset($mergethread['tid']) || $mergethread['tid'] != $mergetid)
|
$tid = intval($tid);
if(!isset($mergethread['tid']) || $mergethread['tid'] != $mergetid)
|
{ $query = $db->simple_select(TABLE_PREFIX."threads", "*", "tid='{$mergetid}'"); $mergethread = $db->fetch_array($query);
| { $mergethread = get_thread($mergetid);
|
} if(!isset($thread['tid']) || $thread['tid'] != $tid) {
|
} if(!isset($thread['tid']) || $thread['tid'] != $tid) {
|
$query = $db->simple_select(TABLE_PREFIX."threads", "*", "tid='{$tid}'"); $thread = $db->fetch_array($query);
| $thread = get_thread($tid);
|
} $pollsql = ''; if($mergethread['poll'])
| } $pollsql = ''; if($mergethread['poll'])
|
Zeile 893 | Zeile 903 |
---|
$this->delete_thread($mergetid);
$updated_stats = array(
|
$this->delete_thread($mergetid);
$updated_stats = array(
|
"replies" => '+'.$mergethread['replies']+1,
| "replies" => '+'.($mergethread['replies']+1),
|
"unapprovedposts" => "+{$mergethread['unapprovedposts']}" ); update_thread_counters($tid, $updated_stats);
|
"unapprovedposts" => "+{$mergethread['unapprovedposts']}" ); update_thread_counters($tid, $updated_stats);
|
|
|
// Thread is not in current forum if($mergethread['fid'] != $thread['fid'])
|
// Thread is not in current forum if($mergethread['fid'] != $thread['fid'])
|
{ // If old thread was unapproved, implied counter for old forum needs updating if($mergethread['visible'] == 0) { $updated_stats = array( "unapprovedposts" => '-'.($mergethread['replies']+$mergethread['unapprovedposts']) ); } else { $updated_stats = array( "posts" => '-'.($mergethread['replies']+1), "unapprovedposts" => "-{$mergethread['unapprovedposts']}" ); } update_forum_counters($mergethread['fid'], $updated_stats);
| {
|
// If new thread is unapproved, implied counter comes in to effect if($thread['visible'] == 0) {
| // If new thread is unapproved, implied counter comes in to effect if($thread['visible'] == 0) {
|
Zeile 929 | Zeile 923 |
---|
$updated_stats = array( "posts" => '+'.($mergethread['replies']+1), "unapprovedposts" => "+{$mergethread['unapprovedposts']}"
|
$updated_stats = array( "posts" => '+'.($mergethread['replies']+1), "unapprovedposts" => "+{$mergethread['unapprovedposts']}"
|
); } update_forum_counters($thread['fid'], $updated_stats); } // Merged thread and new thread are in the same forum else { if($mergethread['visible'] == 0) { $updated_stats = array( "unapprovedthreads" => "-1" ); } else { $updated_stats = array( "threads" => "-1"
| |
); } update_forum_counters($thread['fid'], $updated_stats);
| ); } update_forum_counters($thread['fid'], $updated_stats);
|
Zeile 978 | Zeile 955 |
---|
$newsubject = $db->escape_string($newsubject); $query = array( "fid" => intval($moveto),
|
$newsubject = $db->escape_string($newsubject); $query = array( "fid" => intval($moveto),
|
"subject" => $db->escape_string($newsubject), "icon" => $db->escape_string($thread['icon']), "uid" => $db->escape_string($thread['uid']),
| "subject" => $newsubject, "icon" => intval($thread['icon']), "uid" => intval($thread['uid']),
|
"username" => $db->escape_string($thread['username']),
|
"username" => $db->escape_string($thread['username']),
|
"dateline" => $db->escape_string($thread['dateline']), "lastpost" => $db->escape_string($thread['lastpost']),
| "dateline" => intval($thread['dateline']), "lastpost" => intval($thread['lastpost']),
|
"lastposter" => $db->escape_string($thread['lastposter']), "replies" => count($pids)-1,
|
"lastposter" => $db->escape_string($thread['lastposter']), "replies" => count($pids)-1,
|
"visible" => "1",
| "visible" => 1,
|
"notes" => '' ); $db->insert_query(TABLE_PREFIX."threads", $query);
| "notes" => '' ); $db->insert_query(TABLE_PREFIX."threads", $query);
|
Zeile 1023 | Zeile 1000 |
---|
elseif($oldusepcounts == "no" && $newusepcounts == "yes") { $pcount = "+{$posters['posts']}";
|
elseif($oldusepcounts == "no" && $newusepcounts == "yes") { $pcount = "+{$posters['posts']}";
|
}
| }
|
if(!empty($pcount)) {
| if(!empty($pcount)) {
|
Zeile 1051 | Zeile 1028 |
---|
else if($post['visible'] == 0) { $num_unapproved++;
|
else if($post['visible'] == 0) { $num_unapproved++;
|
} }
| } }
|
// Update the subject of the first post in the new thread $query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='$newtid'", array('order_by' => 'dateline', 'limit' => 1)); $newthread = $db->fetch_array($query);
| // Update the subject of the first post in the new thread $query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='$newtid'", array('order_by' => 'dateline', 'limit' => 1)); $newthread = $db->fetch_array($query);
|
Zeile 1247 | Zeile 1224 |
---|
* Approve multiple posts * * @param array PIDs
|
* Approve multiple posts * * @param array PIDs
|
* @param int Thread ID * @param int Forum ID * @return boolean true */ function approve_posts($pids, $tid, $fid) { global $db, $cache, $plugins;
| * @return boolean true */ function approve_posts($pids) { global $db, $cache;
|
|
|
$thread = get_thread($tid);
| |
$num_posts = 0;
|
$num_posts = 0;
|
foreach($pids as $pid) { $query = $db->query(" SELECT p.tid, f.usepostcounts, p.uid, p.visible FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=p.fid) WHERE p.pid='{$pid}' AND p.visible = '0' "); while($post = $db->fetch_array($query)) { // If post counts enabled in this forum and the post hasn't already been approved, add 1 if($post['usepostcounts'] != "no") { $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+1 WHERE uid='".$post['uid']."'"); } ++$num_posts; } } $where = "pid IN (".implode(",", $pids).")";
| $pid_list = implode(",", $pids); $pids = array();
|
// Make visible $approve = array( "visible" => 1, );
|
// Make visible $approve = array( "visible" => 1, );
|
$db->update_query(TABLE_PREFIX."posts", $approve, $where);
$plugins->run_hooks("class_moderation_approve_posts", $pids);
$is_first = false; // If this is the first post of the thread, also approve the thread $query = $db->simple_select(TABLE_PREFIX."posts", "tid, pid", "pid='{$thread['firstpost']}' AND visible='1'"); $first_post = $db->fetch_array($query); if($first_post['tid']) { if(in_array($first_post['pid'], $pids)) { $is_first = true; // Thread is invisible, update impled counters if($thread['visible'] == 0) { $num_posts += $thread['replies']; } $db->update_query(TABLE_PREFIX."threads", $approve, "tid='{$first_post['tid']}'"); } } if($is_first)
| $query = $db->query(" SELECT p.pid, p.tid, f.fid, f.usepostcounts, p.uid, p.visible, t.visible AS threadvisible, t.replies AS threadreplies, t.firstpost AS threadfirstpost, t.unapprovedposts AS threadunapprovedposts FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=p.fid) WHERE p.pid IN ($pid_list) AND p.visible = '0' "); while($post = $db->fetch_array($query))
|
{
|
{
|
$updated_thread_stats['replies'] = "+".($num_posts-1); } else { $updated_thread_stats['replies'] = "+{$num_posts}"; } $updated_thread_stats['unapprovedposts'] = "-".$num_posts; update_thread_counters($tid, $updated_thread_stats); $updated_forum_stats = array( "posts" => "+{$num_posts}", "unapprovedposts" => "-{$num_posts}" ); if($is_first) { $updated_forum_stats['threads'] = "+1"; $updated_forum_stats['unapprovedthreads'] = "-1"; } update_forum_counters($fid, $updated_forum_stats);
return true; }
/** * Unapprove multiple posts * * @param array PIDs * @param int Thread ID * @param int Forum ID * @return boolean true */ function unapprove_posts($pids, $tid, $fid) { global $db, $cache, $plugins; $thread = get_thread($tid); $num_posts = 0; foreach($pids as $pid) { $query = $db->query(" SELECT p.tid, f.usepostcounts, p.uid FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=p.fid) WHERE p.pid='{$pid}' AND p.visible = '1' "); while($post = $db->fetch_array($query)) { // If post counts enabled in this forum and the post hasn't already been unapproved, remove 1 if($post['usepostcounts'] != "no")
| // If post counts enabled in this forum and the post hasn't already been approved, add 1 if($post['usepostcounts'] != "no" && $thread['visible'] == 1) { $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum+1 WHERE uid='".$post['uid']."'"); }
$pids[] = $post['pid'];
if(!$thread_counters[$post['tid']]['unapprovedposts']) { $thread_counters[$post['tid']]['unapprovedposts'] = $post['threadunapprovedposts']; } --$thread_counters[$post['tid']]['unapprovedposts'];
if($post['threadfirstpost'] != $post['pid']) { if(!$thread_counters[$post['tid']]['replies'])
|
{
|
{
|
$db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum-1 WHERE uid='".$post['uid']."'");
| $thread_counters[$post['tid']]['replies'] = $post['threadreplies'];
|
}
|
}
|
$num_posts++;
| ++$thread_counters[$post['tid']]['replies']; }
// Only add to the forum count if the thread is invisible if($post['threadvisible'] == 0) { ++$forum_counters[$post['fid']]['num_posts']; }
// If the first post here matches and thread is invisible, we approve the thread too if($post['threadfirstpost'] == $post['pid'] && $post['threadvisible'] == 0) { $thread_counters[$post['tid']]['visible'] = 1; $thread_counters[$post['tid']]['unapprovedposts'] += 1; $forum_counters[$post['fid']]['num_posts'] += $post['threadreplies']; $forum_counters[$post['fid']]['num_threads']++;
|
}
|
}
|
}
$where = "pid IN (".implode(",", $pids).")";
| } if(!count($pids)) return false;
$where = "pid IN (".implode(",", $pids).")"; $db->update_query(TABLE_PREFIX."posts", $approve, $where);
if(is_array($thread_counters)) { foreach($thread_counters as $tid => $counters) { $db->update_query(TABLE_PREFIX."threads", $counters, "tid='{$tid}'"); } } if(is_array($forum_counters)) { foreach($forum_counters as $fid => $counters) { $updated_forum_stats = array( "posts" => "+{$counters['num_posts']}", "unapprovedposts" => "-{$counters['num_posts']}", "threads" => "+{$counters['num_threads']}", "unapprovedthreads" => "-{$counters['num_threads']}" ); update_forum_counters($fid, $updated_forum_stats); } } return true; }
|
|
|
// Make visible $unapprove = array(
| /** * Unapprove multiple posts * * @param array PIDs * @return boolean true */ function unapprove_posts($pids) { global $db, $cache;
$pid_list = implode(",", $pids); $pids = array();
// Make invisible $approve = array(
|
"visible" => 0, );
|
"visible" => 0, );
|
$db->update_query(TABLE_PREFIX."posts", $unapprove, $where);
$plugins->run_hooks("class_moderation_unapprove_posts", $pids);
$is_first = false; // If this is the first post of the thread, also approve the thread $query = $db->simple_select(TABLE_PREFIX."posts", "tid,pid", "pid='{$thread['firstpost']}' AND visible='0'"); $first_post = $db->fetch_array($query); if($first_post['tid'])
| $query = $db->query(" SELECT p.pid, p.tid, f.fid, f.usepostcounts, p.uid, p.visible, t.visible AS threadvisible, t.replies AS threadreplies, t.firstpost AS threadfirstpost, t.unapprovedposts AS threadunapprovedposts FROM ".TABLE_PREFIX."posts p LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid) LEFT JOIN ".TABLE_PREFIX."forums f ON (f.fid=p.fid) WHERE p.pid IN ($pid_list) AND p.visible = '1' "); while($post = $db->fetch_array($query))
|
{
|
{
|
if(in_array($first_post['pid'], $pids)) { $is_first = true; // Thread is visible, update impled counters if($thread['visible'] == 1)
| // If post counts enabled in this forum and the post hasn't already been unapproved, subtract 1 if($post['usepostcounts'] != "no" && $thread['visible'] == 1) { $db->query("UPDATE ".TABLE_PREFIX."users SET postnum=postnum-1 WHERE uid='".$post['uid']."'"); }
$pids[] = $post['pid'];
if(!$thread_counters[$post['tid']]['unapprovedposts']) { $thread_counters[$post['tid']]['unapprovedposts'] = $post['threadunapprovedposts']; } ++$thread_counters[$post['tid']]['unapprovedposts']; if($post['threadfirstpost'] != $post['pid']) { if(!$thread_counters[$post['tid']]['replies'])
|
{
|
{
|
$num_posts += $thread['replies'];
| $thread_counters[$post['tid']]['replies'] = $post['threadreplies'];
|
}
|
}
|
$db->update_query(TABLE_PREFIX."threads", $unapprove, "tid='{$first_post['tid']}'");
| $thread_counters[$post['tid']]['replies'] = $thread_counters[$post['tid']]['replies']-1;
|
}
|
}
|
} $updated_thread_stats = array( "unapprovedposts" => "+{$num_posts}" ); if($is_first) { $updated_thread_stats['replies'] = "-".($num_posts-1); } else { $updated_thread_stats['replies'] = "-{$num_posts}"; } update_thread_counters($tid, $updated_thread_stats);
$updated_forum_stats = array( "posts" => "-{$num_posts}", "unapprovedposts" => "+{$num_posts}" );
if($is_first) { $updated_forum_stats['threads'] = "-1"; $updated_forum_stats['unapprovedthreads'] = "+1"; } update_forum_counters($fid, $updated_forum_stats);
| if($post['threadvisible'] == 1) { ++$forum_counters[$post['fid']]['num_posts']; }
// If the first post here matches and thread is visible, we unapprove the thread too if($post['threadfirstpost'] == $post['pid'] && $post['threadvisible'] == 1) { $thread_counters[$post['tid']]['visible'] = 0; $thread_counters[$post['tid']]['unapprovedposts'] -= 1; $forum_counters[$post['fid']]['num_posts'] += $post['threadreplies']; $forum_counters[$post['fid']]['num_threads']++; } }
if(!count($pids)) return false;
$where = "pid IN (".implode(",", $pids).")"; $db->update_query(TABLE_PREFIX."posts", $approve, $where);
if(is_array($thread_counters)) { foreach($thread_counters as $tid => $counters) { $db->update_query(TABLE_PREFIX."threads", $counters, "tid='{$tid}'"); } } if(is_array($forum_counters)) { foreach($forum_counters as $fid => $counters) { $updated_forum_stats = array( "posts" => "-{$counters['num_posts']}", "unapprovedposts" => "+{$counters['num_posts']}", "threads" => "-{$counters['num_threads']}", "unapprovedthreads" => "+{$counters['num_threads']}" ); update_forum_counters($fid, $updated_forum_stats); } }
|
return true; }
| return true; }
|
Zeile 1451 | Zeile 1443 |
---|
$lastpost_subject = array( "lastpostsubject" => $new_subject['subject'] );
|
$lastpost_subject = array( "lastpostsubject" => $new_subject['subject'] );
|
|
|
$db->update_query(TABLE_PREFIX."forums", $lastpost_subject, "lastposttid='{$thread['tid']}'"); }
| $db->update_query(TABLE_PREFIX."forums", $lastpost_subject, "lastposttid='{$thread['tid']}'"); }
|
Zeile 1485 | Zeile 1477 |
---|
* Toggle post visibility (approved/unapproved) * * @param array Post IDs
|
* Toggle post visibility (approved/unapproved) * * @param array Post IDs
|
* @param int Thread ID * @param int Forum ID
| |
* @return boolean true */
|
* @return boolean true */
|
function toggle_post_visibility($pids, $tid, $fid)
| function toggle_post_visibility($pids)
|
{ global $db; $pid_list = implode(',', $pids);
| { global $db; $pid_list = implode(',', $pids);
|
Zeile 1507 | Zeile 1497 |
---|
} if(is_array($unapprove)) {
|
} if(is_array($unapprove)) {
|
$this->unapprove_posts($unapprove, $tid, $fid);
| $this->unapprove_posts($unapprove);
|
} if(is_array($approve)) {
|
} if(is_array($approve)) {
|
$this->approve_posts($approve, $tid, $fid);
| $this->approve_posts($approve);
|
} return true; }
/** * Toggle thread visibility (approved/unapproved)
|
} return true; }
/** * Toggle thread visibility (approved/unapproved)
|
* * @param array Thread IDs
| * * @param array Thread IDs
|
* @param int Forum ID * @return boolean true */
| * @param int Forum ID * @return boolean true */
|
Zeile 1535 | Zeile 1525 |
---|
$unapprove[] = $thread['tid']; } else
|
$unapprove[] = $thread['tid']; } else
|
{ $approve[] = $thread['tid']; } } if(is_array($unapprove)) {
| { $approve[] = $thread['tid']; } } if(is_array($unapprove)) {
|
$this->unapprove_threads($unapprove, $fid); } if(is_array($approve))
| $this->unapprove_threads($unapprove, $fid); } if(is_array($approve))
|
Zeile 1623 | Zeile 1613 |
---|
if(count($groups) > 0) { $groups_csv = implode(',', $groups);
|
if(count($groups) > 0) { $groups_csv = implode(',', $groups);
|
$db->query("DELETE s FROM (".TABLE_PREFIX."favorites s, ".TABLE_PREFIX."users u) WHERE s.type='s' AND s.tid IN ({$tids_csv}) AND s.uid=u.uid AND (u.usergroup IN ({$groups_csv}){$additional_groups})");
| $query = $db->query(" SELECT s.tid, u.uid FROM ".TABLE_PREFIX."favorites s LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=s.uid) WHERE s.type='s' AND s.tid IN ({$tids_csv}) AND (u.usergroup IN ({$groups_csv}){$additional_groups}) "); while($favorites = $db->fetch_array($query)) { $db->query("DELETE FROM ".TABLE_PREFIX."favorites WHERE uid='{$favorites['uid']}' AND tid='{$favorites['tid']}'"); }
|
} } // Delete all subscriptions of this thread
| } } // Delete all subscriptions of this thread
|