Vergleich inc/class_moderation.php - 1.8.0 - 1.8.26

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 13Zeile 13
	/**
* Close one or more threads
*

	/**
* Close one or more threads
*

	 * @param array Thread IDs

	 * @param array|int $tids Thread ID(s)

	 * @return boolean true
*/
function close_threads($tids)

	 * @return boolean true
*/
function close_threads($tids)

Zeile 43Zeile 43
	/**
* Open one or more threads
*

	/**
* Open one or more threads
*

	 * @param int Thread IDs
* @return boolean true

	 * @param array|int $tids Thread ID(s)
* @return boolean

	 */

function open_threads($tids)

	 */

function open_threads($tids)

	{
global $db, $plugins;

if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;
}

// Make sure we only have valid values
$tids = array_map('intval', $tids);


	{
global $db, $plugins;

if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;
}

// Make sure we only have valid values
$tids = array_map('intval', $tids);


		$plugins->run_hooks("class_moderation_open_threads", $tids);

$tid_list = implode(',', $tids);

		$plugins->run_hooks("class_moderation_open_threads", $tids);

$tid_list = implode(',', $tids);





		$closethread = array(
"closed" => 0,
);

		$closethread = array(
"closed" => 0,
);

		$db->update_query("threads", $closethread, "tid IN ($tid_list)");


		$db->update_query("threads", $closethread, "tid IN ($tid_list)");


		return true;
}

/**
* Stick one or more threads
*

		return true;
}

/**
* Stick one or more threads
*

	 * @param int Thread IDs
* @return boolean true

	 * @param array|int $tids Thread ID(s)
* @return boolean

	 */
function stick_threads($tids)

	 */
function stick_threads($tids)

	{
global $db, $plugins;

if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;
}

// Make sure we only have valid values
$tids = array_map('intval', $tids);

$plugins->run_hooks("class_moderation_stick_threads", $tids);

	{
global $db, $plugins;

if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;
}

// Make sure we only have valid values
$tids = array_map('intval', $tids);

$plugins->run_hooks("class_moderation_stick_threads", $tids);


$tid_list = implode(',', $tids);



$tid_list = implode(',', $tids);


Zeile 114Zeile 114
	/**
* Unstick one or more thread
*

	/**
* Unstick one or more thread
*

	 * @param int Thread IDs
* @return boolean true

	 * @param array|int $tids Thread ID(s)
* @return boolean

	 */
function unstick_threads($tids)
{

	 */
function unstick_threads($tids)
{

Zeile 149Zeile 149
	/**
* Remove redirects that redirect to the specified thread
*

	/**
* Remove redirects that redirect to the specified thread
*

	 * @param int Thread ID of the thread
* @return boolean true

	 * @param int $tid Thread ID of the thread
* @return boolean

	 */
function remove_redirects($tid)

	 */
function remove_redirects($tid)

	{
global $db, $plugins;


	{
global $db, $plugins;


		$plugins->run_hooks("class_moderation_remove_redirects", $tid);

// Delete the redirects
$tid = (int)$tid;
if(empty($tid))

		$plugins->run_hooks("class_moderation_remove_redirects", $tid);

// Delete the redirects
$tid = (int)$tid;
if(empty($tid))

		{

		{

			return false;

			return false;

		}

		}


$query = $db->simple_select('threads', 'tid', "closed='moved|$tid'");
while($redirect_tid = $db->fetch_field($query, 'tid'))


$query = $db->simple_select('threads', 'tid', "closed='moved|$tid'");
while($redirect_tid = $db->fetch_field($query, 'tid'))

Zeile 177Zeile 177
	/**
* Delete a thread
*

	/**
* Delete a thread
*

	 * @param int Thread ID of the thread
* @return boolean true

	 * @param int $tid Thread ID of the thread
* @return boolean

	 */
function delete_thread($tid)
{

	 */
function delete_thread($tid)
{

Zeile 238Zeile 238
			}
}


			}
}


		if($forum['usethreadcounts'] != 0)

		if($forum['usethreadcounts'] != 0 && substr($thread['closed'], 0, 6) != 'moved|')

		{
if(!isset($userposts[$thread['uid']]['num_threads']))
{

		{
if(!isset($userposts[$thread['uid']]['num_threads']))
{

Zeile 315Zeile 315
				$updated_counters['deletedposts'] = -1;
}
else

				$updated_counters['deletedposts'] = -1;
}
else

			{

			{

				$updated_counters['unapprovedposts'] = -1;
}
}

				$updated_counters['unapprovedposts'] = -1;
}
}

Zeile 323Zeile 323
		// Update forum count
update_forum_counters($thread['fid'], $updated_counters);
update_forum_lastpost($thread['fid']);

		// Update forum count
update_forum_counters($thread['fid'], $updated_counters);
update_forum_lastpost($thread['fid']);

 
		mark_reports($tid, 'thread');


$plugins->run_hooks("class_moderation_delete_thread", $tid);


$plugins->run_hooks("class_moderation_delete_thread", $tid);


return true;
}

/**


return true;
}

/**

	 * Delete a poll
*

	 * Delete a poll
*

	 * @param int Poll id
* @return boolean true

	 * @param int $pid Poll id
* @return boolean

	 */
function delete_poll($pid)
{

	 */
function delete_poll($pid)
{

Zeile 357Zeile 358

return true;
}


return true;
}





	/**
* Approve one or more threads
*

	/**
* Approve one or more threads
*

	 * @param array Thread IDs
* @return boolean true

	 * @param array|int $tids Thread ID(s)
* @return boolean

	 */
function approve_threads($tids)
{

	 */
function approve_threads($tids)
{

Zeile 371Zeile 372
		if(!is_array($tids))
{
$tids = array($tids);

		if(!is_array($tids))
{
$tids = array($tids);

		}


		}


		if(empty($tids))
{
return false;

		if(empty($tids))
{
return false;

Zeile 405Zeile 406
			}

if(!isset($user_counters[$thread['uid']]))

			}

if(!isset($user_counters[$thread['uid']]))

			{

			{

				$user_counters[$thread['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);
}

				$user_counters[$thread['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);
}





			++$forum_counters[$forum['fid']]['num_threads'];
$forum_counters[$forum['fid']]['num_posts'] += $thread['replies']+1; // Remove implied visible from count
$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['deletedposts'];

			++$forum_counters[$forum['fid']]['num_threads'];
$forum_counters[$forum['fid']]['num_posts'] += $thread['replies']+1; // Remove implied visible from count
$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['deletedposts'];

Zeile 424Zeile 425
				while($counter = $db->fetch_array($query))
{
$user_counters[$counter['uid']]['num_posts'] += $counter['posts'];

				while($counter = $db->fetch_array($query))
{
$user_counters[$counter['uid']]['num_posts'] += $counter['posts'];

				}

				}

			}


			}


			if($forum['usethreadcounts'] != 0)

			if($forum['usethreadcounts'] != 0 && substr($thread['closed'], 0, 6) != 'moved|')

			{
++$user_counters[$thread['uid']]['num_threads'];
}

			{
++$user_counters[$thread['uid']]['num_threads'];
}

Zeile 464Zeile 465
			{
$db->update_query("posts", $approve, "pid IN (".implode(',', $posts_to_approve).")");
}

			{
$db->update_query("posts", $approve, "pid IN (".implode(',', $posts_to_approve).")");
}





			$plugins->run_hooks("class_moderation_approve_threads", $tids);

if(!empty($forum_counters))

			$plugins->run_hooks("class_moderation_approve_threads", $tids);

if(!empty($forum_counters))

Zeile 478Zeile 479
						"posts" => "+{$counters['num_posts']}",
"unapprovedposts" => "-{$counters['num_unapproved_posts']}",
"deletedposts" => "+{$counters['num_deleted_posts']}"

						"posts" => "+{$counters['num_posts']}",
"unapprovedposts" => "-{$counters['num_unapproved_posts']}",
"deletedposts" => "+{$counters['num_deleted_posts']}"

					);
update_forum_counters($fid, $update_array);
update_forum_lastpost($fid);
}

					);
update_forum_counters($fid, $update_array);
update_forum_lastpost($fid);
}

			}

			}

			



			if(!empty($user_counters))
{
foreach($user_counters as $uid => $counters)

			if(!empty($user_counters))
{
foreach($user_counters as $uid => $counters)

Zeile 502Zeile 503
	/**
* Unapprove one or more threads
*

	/**
* Unapprove one or more threads
*

	 * @param array Thread IDs
* @return boolean true

	 * @param array|int $tids Thread ID(s)
* @return boolean

	 */
function unapprove_threads($tids)
{
global $db, $cache, $plugins;

if(!is_array($tids))

	 */
function unapprove_threads($tids)
{
global $db, $cache, $plugins;

if(!is_array($tids))

		{

		{

			$tids = array($tids);
}

if(empty($tids))
{
return false;

			$tids = array($tids);
}

if(empty($tids))
{
return false;

		}

		}


// Make sure we only have valid values
$tids = array_map('intval', $tids);


// Make sure we only have valid values
$tids = array_map('intval', $tids);

Zeile 537Zeile 538
		{
$thread = get_thread($tid);
$forum = get_forum($thread['fid']);

		{
$thread = get_thread($tid);
$forum = get_forum($thread['fid']);





			if($thread['visible'] == 1 || $thread['visible'] == -1)
{
if(!isset($forum_counters[$forum['fid']]))

			if($thread['visible'] == 1 || $thread['visible'] == -1)
{
if(!isset($forum_counters[$forum['fid']]))

Zeile 586Zeile 587
					}
}


					}
}


				if($thread['visible'] == 1 && $forum['usethreadcounts'] != 0)

				if($thread['visible'] == 1 && $forum['usethreadcounts'] != 0 && substr($thread['closed'], 0, 6) != 'moved|')

				{
++$user_counters[$thread['uid']]['num_threads'];
}

				{
++$user_counters[$thread['uid']]['num_threads'];
}

Zeile 644Zeile 645
					"threadnum" => "-{$counters['num_threads']}",
);
update_user_counters($uid, $update_array);

					"threadnum" => "-{$counters['num_threads']}",
);
update_user_counters($uid, $update_array);

			}
}

			}
}


return true;
}


return true;
}

Zeile 653Zeile 654
	/**
* Delete a specific post
*

	/**
* Delete a specific post
*

	 * @param int Post ID
* @return boolean true

	 * @param int $pid Post ID
* @return boolean

	 */
function delete_post($pid)
{

	 */
function delete_post($pid)
{

Zeile 671Zeile 672
		");
$post = $db->fetch_array($query);
if(!$post)

		");
$post = $db->fetch_array($query);
if(!$post)

		{

		{

			return false;
}

$forum = get_forum($post['fid']);
// If post counts enabled in this forum and it hasn't already been unapproved, remove 1
if($forum['usepostcounts'] != 0 && $post['visible'] != -1 && $post['visible'] != 0 && $post['threadvisible'] != 0 && $post['threadvisible'] != -1)

			return false;
}

$forum = get_forum($post['fid']);
// If post counts enabled in this forum and it hasn't already been unapproved, remove 1
if($forum['usepostcounts'] != 0 && $post['visible'] != -1 && $post['visible'] != 0 && $post['threadvisible'] != 0 && $post['threadvisible'] != -1)

		{

		{

			update_user_counters($post['uid'], array('postnum' => "-1"));
}


			update_user_counters($post['uid'], array('postnum' => "-1"));
}


Zeile 698Zeile 699

// Update unapproved post count
if($post['visible'] == 0)


// Update unapproved post count
if($post['visible'] == 0)

		{
$update_array = array(
"unapprovedposts" => "-1"

		{
$update_array = array(
"unapprovedposts" => "-1"

			);
}
elseif($post['visible'] == -1)

			);
}
elseif($post['visible'] == -1)

Zeile 728Zeile 729
				"unapprovedposts" => "-1"
);
}

				"unapprovedposts" => "-1"
);
}

		elseif($post['visible'] == -1 || $post['threadvisible'] == 0)

		elseif($post['visible'] == -1 || $post['threadvisible'] == -1)

		{
$update_array = array(
"deletedposts" => "-1"

		{
$update_array = array(
"deletedposts" => "-1"

Zeile 750Zeile 751
	/**
* Merge posts within thread
*

	/**
* Merge posts within thread
*

	 * @param array Post IDs to be merged
* @param int Thread ID (Set to 0 if posts from multiple threads are
* selected)

	 * @param array $pids Post IDs to be merged
* @param int $tid Thread ID (Set to 0 if posts from multiple threads are selected)


	 * @return int ID of the post into which all other posts are merged
*/

	 * @return int ID of the post into which all other posts are merged
*/

	function merge_posts($pids, $tid=0, $sep="new_line")

	function merge_posts($pids=array(), $tid=0, $sep="new_line")

	{
global $db, $plugins;


	{
global $db, $plugins;


Zeile 802Zeile 802
				$fid = $post['fid'];
$mastertid = $post['tid'];
$first = 0;

				$fid = $post['fid'];
$mastertid = $post['tid'];
$first = 0;

 
				$visible = $post['visible'];

			}
else
{

			}
else
{

Zeile 828Zeile 829
				{
--$thread_counters[$post['tid']]['replies'];
$forum = get_forum($post['fid']);

				{
--$thread_counters[$post['tid']]['replies'];
$forum = get_forum($post['fid']);

 
					if(!isset($user_counters[$post['uid']]))
{
$user_counters[$post['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);
}

					// Subtract 1 from user's post count
if($forum['usepostcounts'] != 0 && $post['threadvisible'] == 1)

					// Subtract 1 from user's post count
if($forum['usepostcounts'] != 0 && $post['threadvisible'] == 1)

					{
if(!isset($user_counters[$post['uid']]))
{
$user_counters[$post['uid']] = 0;
}

					{





						// Update post count of the user of the merged posts

						// Update post count of the user of the merged posts

						--$user_counters[$post['uid']];

						--$user_counters[$post['uid']]['num_posts'];

					}

					}

 
					if($post['threadfirstpost'] == $post['pid'] && $forum['usethreadcounts'] != 0 && $post['threadvisible'] == 1)
{
--$user_counters[$post['uid']]['num_threads'];
}
$thread_counters[$post['tid']]['attachmentcount'] -= $post['attachmentcount'];

				}
elseif($post['visible'] == 0)

				}
elseif($post['visible'] == 0)

				{

				{

					// Subtract 1 unapproved post from post's thread
--$thread_counters[$post['tid']]['unapprovedposts'];
}
elseif($post['visible'] == -1)

					// Subtract 1 unapproved post from post's thread
--$thread_counters[$post['tid']]['unapprovedposts'];
}
elseif($post['visible'] == -1)

				{

				{

					// Subtract 1 deleted post from post's thread
--$thread_counters[$post['tid']]['deletedposts'];
}

					// Subtract 1 deleted post from post's thread
--$thread_counters[$post['tid']]['deletedposts'];
}

				$thread_counters[$post['tid']]['attachmentcount'] -= $post['attachmentcount'];

 

// Subtract 1 post from post's forum
if($post['threadvisible'] == 1 && $post['visible'] == 1)


// Subtract 1 post from post's forum
if($post['threadvisible'] == 1 && $post['visible'] == 1)

Zeile 861Zeile 869
					--$forum_counters[$post['fid']]['unapprovedposts'];
}
else

					--$forum_counters[$post['fid']]['unapprovedposts'];
}
else

				{

				{

					--$forum_counters[$post['fid']]['deletedposts'];

					--$forum_counters[$post['fid']]['deletedposts'];

 
				}

// Add attachment count to thread
if($visible == 1)
{
$thread_counters[$mastertid]['attachmentcount'] += $post['attachmentcount'];

				}
}
}

				}
}
}

Zeile 870Zeile 884
		// Update the message
$mergepost = array(
"message" => $db->escape_string($message),

		// Update the message
$mergepost = array(
"message" => $db->escape_string($message),

		);

		);

		$db->update_query("posts", $mergepost, "pid = '{$masterpid}'");

// Delete the extra posts

		$db->update_query("posts", $mergepost, "pid = '{$masterpid}'");

// Delete the extra posts

Zeile 883Zeile 897
		$db->update_query("attachments", $mergepost2, "pid IN({$pidin})");

// If the first post of a thread is merged out, the first should be updated

		$db->update_query("attachments", $mergepost2, "pid IN({$pidin})");

// If the first post of a thread is merged out, the first should be updated

		$query = $db->simple_select("threads", "tid, fid, visible", "firstpost IN({$pidin}) AND firstpost != '{$masterpid}'");

		$query = $db->simple_select("threads", "tid, uid, fid, visible", "firstpost IN({$pidin}) AND firstpost != '{$masterpid}'");

		while($thread = $db->fetch_array($query))
{
// In some cases the first post of a thread changes
// Therefore resync the visible field to make sure they're the same if they're not

		while($thread = $db->fetch_array($query))
{
// In some cases the first post of a thread changes
// Therefore resync the visible field to make sure they're the same if they're not

			$query = $db->simple_select("posts", "pid, visible", "tid='{$thread['tid']}'", array('order_by' => 'dateline', 'order_dir' => 'asc', 'limit' => 1));

			$query = $db->simple_select("posts", "pid, uid, visible", "tid='{$thread['tid']}'", array('order_by' => 'dateline', 'order_dir' => 'asc', 'limit' => 1));

			$new_firstpost = $db->fetch_array($query);
if($thread['visible'] != $new_firstpost['visible'])
{

			$new_firstpost = $db->fetch_array($query);
if($thread['visible'] != $new_firstpost['visible'])
{

Zeile 899Zeile 913
					--$thread_counters[$thread['tid']]['replies'];
}
elseif($new_firstpost['visible'] == -1)

					--$thread_counters[$thread['tid']]['replies'];
}
elseif($new_firstpost['visible'] == -1)

				{

				{

					--$thread_counters[$thread['tid']]['deletedposts'];
}
else

					--$thread_counters[$thread['tid']]['deletedposts'];
}
else

Zeile 918Zeile 932
				{
++$thread_counters[$thread['tid']]['unapprovedposts'];
}

				{
++$thread_counters[$thread['tid']]['unapprovedposts'];
}

 
			}

if($new_firstpost['uid'] != $thread['uid'] && $forum['usethreadcounts'] != 0 && $thread['visible'] == 1)
{
if(!isset($user_counters[$new_firstpost['uid']]))
{
$user_counters[$new_firstpost['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);
}
++$user_counters[$new_firstpost['uid']]['num_threads'];

			}
update_first_post($thread['tid']);
}

$arguments = array("pids" => $pids, "tid" => $tid);

			}
update_first_post($thread['tid']);
}

$arguments = array("pids" => $pids, "tid" => $tid);

		$plugins->run_hooks("class_moderation_merge_posts", $arguments);

if(!empty($thread_counters))

		$plugins->run_hooks("class_moderation_merge_posts", $arguments);

if(!empty($thread_counters))

		{
foreach($thread_counters as $tid => $counters)
{

		{
foreach($thread_counters as $tid => $counters)
{

Zeile 934Zeile 960
					'unapprovedposts' => signed($counters['unapprovedposts']),
'deletedposts' => signed($counters['deletedposts']),
'attachmentcount' => signed($counters['attachmentcount'])

					'unapprovedposts' => signed($counters['unapprovedposts']),
'deletedposts' => signed($counters['deletedposts']),
'attachmentcount' => signed($counters['attachmentcount'])

				);

				);

				update_thread_counters($tid, $counters);
update_last_post($tid);

				update_thread_counters($tid, $counters);
update_last_post($tid);

			}
}

			}
}


if(!empty($forum_counters))
{


if(!empty($forum_counters))
{

Zeile 956Zeile 982

if(!empty($user_counters))
{


if(!empty($user_counters))
{

			foreach($user_counters as $uid => $counter)

			foreach($user_counters as $uid => $counters)

			{

			{

				update_user_counters($uid, array('postnum' => "{$counter}"));





				$update_array = array(
"postnum" => "+{$counters['num_posts']}",
"threadnum" => "+{$counters['num_threads']}"
);
update_user_counters($uid, $update_array);

			}
}


			}
}


Zeile 968Zeile 998
	/**
* Move/copy thread
*

	/**
* Move/copy thread
*

	 * @param int Thread to be moved
* @param int Destination forum
* @param string Method of movement (redirect, copy, move)
* @param int Expiry timestamp for redirect

	 * @param int $tid Thread to be moved
* @param int $new_fid Destination forum
* @param string $method Method of movement (redirect, copy, move)
* @param int $redirect_expire Expiry timestamp for redirect

	 * @return int Thread ID
*/
function move_thread($tid, $new_fid, $method="redirect", $redirect_expire=0)

	 * @return int Thread ID
*/
function move_thread($tid, $new_fid, $method="redirect", $redirect_expire=0)

Zeile 1031Zeile 1061
				);
$db->update_query("threads", $changefid, "tid='$tid'");
$db->update_query("posts", $changefid, "tid='$tid'");

				);
$db->update_query("threads", $changefid, "tid='$tid'");
$db->update_query("posts", $changefid, "tid='$tid'");


// If the thread has a prefix and the destination forum doesn't accept that prefix, remove the prefix
if($thread['prefix'] != 0)
{
switch($db->type)
{
case "pgsql":


// If the thread has a prefix and the destination forum doesn't accept that prefix, remove the prefix
if($thread['prefix'] != 0)
{
switch($db->type)
{
case "pgsql":

						case "sqlite":
$query = $db->simple_select("threadprefixes", "COUNT(*) as num_prefixes", "(','||forums||',' LIKE '%,$new_fid,%' OR forums='-1') AND pid='".$thread['prefix']."'");
break;

						case "sqlite":
$query = $db->simple_select("threadprefixes", "COUNT(*) as num_prefixes", "(','||forums||',' LIKE '%,$new_fid,%' OR forums='-1') AND pid='".$thread['prefix']."'");
break;

Zeile 1141Zeile 1171
						'question' => $db->escape_string($poll['question']),
'dateline' => $poll['dateline'],
'options' => $db->escape_string($poll['options']),

						'question' => $db->escape_string($poll['question']),
'dateline' => $poll['dateline'],
'options' => $db->escape_string($poll['options']),

						'votes' => $poll['votes'],

						'votes' => $db->escape_string($poll['votes']),

						'numoptions' => $poll['numoptions'],
'numvotes' => $poll['numvotes'],
'timeout' => $poll['timeout'],

						'numoptions' => $poll['numoptions'],
'numvotes' => $poll['numvotes'],
'timeout' => $poll['timeout'],

Zeile 1201Zeile 1231
							'pid' => $pid,
'uid' => $attachment['uid'],
'filename' => $db->escape_string($attachment['filename']),

							'pid' => $pid,
'uid' => $attachment['uid'],
'filename' => $db->escape_string($attachment['filename']),

							'filetype' => $attachment['filetype'],

							'filetype' => $db->escape_string($attachment['filetype']),

							'filesize' => $attachment['filesize'],

							'filesize' => $attachment['filesize'],

							'attachname' => $attachment['attachname'],

							'attachname' => $db->escape_string($attachment['attachname']),

							'downloads' => $attachment['downloads'],
'visible' => $attachment['visible'],

							'downloads' => $attachment['downloads'],
'visible' => $attachment['visible'],

							'thumbnail' => $attachment['thumbnail']

							'thumbnail' => $db->escape_string($attachment['thumbnail'])

						);
$new_aid = $db->insert_query("attachments", $attachment_array);


						);
$new_aid = $db->insert_query("attachments", $attachment_array);


Zeile 1266Zeile 1296

// Do post and thread count changes if changing between countable and non-countable forums
$query = $db->query("


// Do post and thread count changes if changing between countable and non-countable forums
$query = $db->query("

			SELECT COUNT(p.pid) AS posts, u.uid, p.visible

			SELECT COUNT(p.pid) AS posts, u.uid

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)

			WHERE tid='$tid'
GROUP BY u.uid, p.visible

			WHERE p.tid='$tid' AND p.visible=1
GROUP BY u.uid

			ORDER BY posts DESC
");
while($posters = $db->fetch_array($query))
{
$pcount = 0;

			ORDER BY posts DESC
");
while($posters = $db->fetch_array($query))
{
$pcount = 0;

			if($forum['usepostcounts'] == 1 && $newforum['usepostcounts'] == 0 && $posters['visible'] == 1 && $thread['visible'] == 1)

			if($forum['usepostcounts'] == 1 && $method != 'copy' && $newforum['usepostcounts'] == 0 && $thread['visible'] == 1)

			{
$pcount -= $posters['posts'];
}

			{
$pcount -= $posters['posts'];
}

			if(($forum['usepostcounts'] == 0 || $method == 'copy') && $newforum['usepostcounts'] == 1 && $posters['visible'] == 1 && $thread['visible'] == 1)

			if(($forum['usepostcounts'] == 0 || $method == 'copy') && $newforum['usepostcounts'] == 1 && $thread['visible'] == 1)

			{
$pcount += $posters['posts'];
}

			{
$pcount += $posters['posts'];
}

Zeile 1295Zeile 1325
			}
}


			}
}


		if($forum['usethreadcounts'] == 1 && $newforum['usethreadcounts'] == 0 && $thread['visible'] == 1)

		if($forum['usethreadcounts'] == 1 && $method != 'copy' && $newforum['usethreadcounts'] == 0 && $thread['visible'] == 1)

		{
update_user_counters($thread['uid'], array('threadnum' => "-1"));
}

		{
update_user_counters($thread['uid'], array('threadnum' => "-1"));
}

Zeile 1365Zeile 1395
	/**
* Merge one thread into another
*

	/**
* Merge one thread into another
*

	 * @param int Thread that will be merged into destination
* @param int Destination thread
* @param string New thread subject
* @return boolean true

	 * @param int $mergetid Thread that will be merged into destination
* @param int $tid Destination thread
* @param string $subject New thread subject
* @return boolean

	 */
function merge_threads($mergetid, $tid, $subject)

	 */
function merge_threads($mergetid, $tid, $subject)

	{
global $db, $mybb, $mergethread, $thread, $plugins;


	{
global $db, $mybb, $mergethread, $thread, $plugins, $cache;


		$mergetid = (int)$mergetid;
$tid = (int)$tid;

if(!isset($mergethread['tid']) || $mergethread['tid'] != $mergetid)
{
$mergethread = get_thread($mergetid);

		$mergetid = (int)$mergetid;
$tid = (int)$tid;

if(!isset($mergethread['tid']) || $mergethread['tid'] != $mergetid)
{
$mergethread = get_thread($mergetid);

		}

		}

		if(!isset($thread['tid']) || $thread['tid'] != $tid)
{
$thread = get_thread($tid);
}

		if(!isset($thread['tid']) || $thread['tid'] != $tid)
{
$thread = get_thread($tid);
}

		



		if(!$mergethread || !$thread)

		if(!$mergethread || !$thread)

		{

		{

			return false;
}

			return false;
}

 

$forum_cache = $cache->read('forums');


$threadarray = array();
if(!$thread['poll'] && $mergethread['poll'])


$threadarray = array();
if(!$thread['poll'] && $mergethread['poll'])

Zeile 1411Zeile 1443
		$threadarray['subject'] = $subject;

$user_posts = array();

		$threadarray['subject'] = $subject;

$user_posts = array();

		$query = $db->query("



		if($thread['visible'] != $mergethread['visible'] || $forum_cache[$thread['fid']]['usepostcounts'] != $forum_cache[$mergethread['fid']]['usepostcounts'])
{
$query = $db->query("

				SELECT uid, COUNT(pid) AS postnum
FROM ".TABLE_PREFIX."posts
WHERE tid='{$mergetid}' AND visible=1
GROUP BY uid

				SELECT uid, COUNT(pid) AS postnum
FROM ".TABLE_PREFIX."posts
WHERE tid='{$mergetid}' AND visible=1
GROUP BY uid

		");
while($post = $db->fetch_array($query))
{
$user_posts[$post['uid']]['postnum'] = $post['postnum'];










			");
while($post = $db->fetch_array($query))
{
// Update user counters
if($mergethread['visible'] == 1 && $forum_cache[$mergethread['fid']]['usepostcounts'] == 1)
{
$user_posts[$post['uid']]['postnum'] -= $post['postnum'];
}
elseif($thread['visible'] == 1 && $forum_cache[$thread['fid']]['usepostcounts'] == 1)
{
$user_posts[$post['uid']]['postnum'] += $post['postnum'];
}
}

		}

$sqlarray = array(

		}

$sqlarray = array(

Zeile 1428Zeile 1471
			"replyto" => 0,
);
$db->update_query("posts", $sqlarray, "tid='{$mergetid}'");

			"replyto" => 0,
);
$db->update_query("posts", $sqlarray, "tid='{$mergetid}'");





		$sqlarray = array(
"closed" => "moved|{$tid}",
);

		$sqlarray = array(
"closed" => "moved|{$tid}",
);

Zeile 1464Zeile 1507
			$update_users = array();
foreach($subscriptions[$mergetid] as $user)
{

			$update_users = array();
foreach($subscriptions[$mergetid] as $user)
{

				if(!in_array($user, $subscriptions[$tid]))

				if(!isset($subscriptions[$tid]) || !in_array($user, $subscriptions[$tid]))

				{
// User doesn't have a $tid subscription
$update_users[] = $user;

				{
// User doesn't have a $tid subscription
$update_users[] = $user;

Zeile 1511Zeile 1554
		if($thread['visible'] != $new_firstpost['visible'])
{
$db->update_query("posts", array('visible' => $thread['visible']), "pid='{$new_firstpost['pid']}'");

		if($thread['visible'] != $new_firstpost['visible'])
{
$db->update_query("posts", array('visible' => $thread['visible']), "pid='{$new_firstpost['pid']}'");

			if($new_firstpost['visible'] == 1)

			if($new_firstpost['visible'] == 1 && $forum_cache[$thread['fid']]['usepostcounts'] == 1)

			{
--$user_posts[$post['uid']]['postnum'];

			{
--$user_posts[$post['uid']]['postnum'];

			}
elseif($thread['visible'] == 1)

			}
elseif($thread['visible'] == 1 && $forum_cache[$thread['fid']]['usepostcounts'] == 1)

			{
++$user_posts[$post['uid']]['postnum'];

			{
++$user_posts[$post['uid']]['postnum'];

			}






			}
}
// Update first post if needed
if($new_firstpost['pid'] != $thread['firstpost'])
{
update_first_post($thread['tid']);

		}

// Update thread count if thread has a new firstpost and is visible

		}

// Update thread count if thread has a new firstpost and is visible

		++$user_posts[$mergethread['uid']]['threadnum'];
if($thread['uid'] != $new_firstpost['uid'] && $new_firstpost['visible'] == 1)

		if($thread['uid'] != $new_firstpost['uid'] && $thread['visible'] == 1 && $forum_cache[$thread['fid']]['usethreadcounts'] == 1)


		{

		{

 
			if(!isset($user_posts[$thread['uid']]['threadnum']))
{
$user_posts[$thread['uid']]['threadnum'] = 0;
}
--$user_posts[$thread['uid']]['threadnum'];
if(!isset($user_posts[$new_firstpost['uid']]['threadnum']))
{
$user_posts[$new_firstpost['uid']]['threadnum'] = 0;
}

			++$user_posts[$new_firstpost['uid']]['threadnum'];
}


			++$user_posts[$new_firstpost['uid']]['threadnum'];
}


Zeile 1538Zeile 1594
					"unapprovedposts" => '+'.($mergethread['replies']+$mergethread['unapprovedposts']+$mergethread['deletedposts'])
);
}

					"unapprovedposts" => '+'.($mergethread['replies']+$mergethread['unapprovedposts']+$mergethread['deletedposts'])
);
}

			elseif($thread['visible'] == -1)
{
$updated_stats = array(
"deletedposts" => '+'.($mergethread['replies']+$mergethread['deletedposts']+$mergethread['unapprovedposts'])
);
}
else

			elseif($thread['visible'] == -1)
{
$updated_stats = array(
"deletedposts" => '+'.($mergethread['replies']+$mergethread['deletedposts']+$mergethread['unapprovedposts'])
);
}
else

			{
$updated_stats = array(
"posts" => "+{$mergethread['replies']}",

			{
$updated_stats = array(
"posts" => "+{$mergethread['replies']}",

Zeile 1553Zeile 1609
				);
}
update_forum_counters($thread['fid'], $updated_stats);

				);
}
update_forum_counters($thread['fid'], $updated_stats);

			update_forum_lastpost($thread['fid']);





			// If old thread is unapproved, implied counter comes in to effect
if($mergethread['visible'] == 0)
{
$updated_stats = array(
"unapprovedposts" => '-'.($mergethread['replies']+$mergethread['unapprovedposts']+$mergethread['deletedposts'])

			// If old thread is unapproved, implied counter comes in to effect
if($mergethread['visible'] == 0)
{
$updated_stats = array(
"unapprovedposts" => '-'.($mergethread['replies']+$mergethread['unapprovedposts']+$mergethread['deletedposts'])

				);
}

				);
}

			elseif($mergethread['visible'] == -1)
{
$updated_stats = array(
"deletedposts" => '-'.($mergethread['replies']+$mergethread['deletedposts']+$mergethread['unapprovedposts'])

			elseif($mergethread['visible'] == -1)
{
$updated_stats = array(
"deletedposts" => '-'.($mergethread['replies']+$mergethread['deletedposts']+$mergethread['unapprovedposts'])

				);
}

				);
}

			else
{
$updated_stats = array(

			else
{
$updated_stats = array(

Zeile 1594Zeile 1649
				$updated_stats['unapprovedposts'] -= $mergethread['replies']+$mergethread['deletedposts'];
$updated_stats['posts'] += $mergethread['replies'];
$updated_stats['deletedposts'] += $mergethread['deletedposts'];

				$updated_stats['unapprovedposts'] -= $mergethread['replies']+$mergethread['deletedposts'];
$updated_stats['posts'] += $mergethread['replies'];
$updated_stats['deletedposts'] += $mergethread['deletedposts'];

			}

			}

			elseif($mergethread['visible'] == -1)
{
$updated_stats['deletedposts'] -= $mergethread['replies']+$mergethread['unapprovedposts'];
$updated_stats['posts'] += $mergethread['replies'];
$updated_stats['unapprovedposts'] += $mergethread['unapprovedposts'];

			elseif($mergethread['visible'] == -1)
{
$updated_stats['deletedposts'] -= $mergethread['replies']+$mergethread['unapprovedposts'];
$updated_stats['posts'] += $mergethread['replies'];
$updated_stats['unapprovedposts'] += $mergethread['unapprovedposts'];

			}


			}


			// If new thread is unapproved, implied counter comes in to effect
if($thread['visible'] == 0)
{
$updated_stats['unapprovedposts'] += $mergethread['replies']+$mergethread['deletedposts'];
$updated_stats['posts'] -= $mergethread['replies'];
$updated_stats['deletedposts'] -= $mergethread['deletedposts'];

			// If new thread is unapproved, implied counter comes in to effect
if($thread['visible'] == 0)
{
$updated_stats['unapprovedposts'] += $mergethread['replies']+$mergethread['deletedposts'];
$updated_stats['posts'] -= $mergethread['replies'];
$updated_stats['deletedposts'] -= $mergethread['deletedposts'];

			}

			}

			elseif($thread['visible'] == -1)
{
$updated_stats['deletedposts'] += $mergethread['replies']+$mergethread['unapprovedposts'];
$updated_stats['posts'] -= $mergethread['replies'];
$updated_stats['unapprovedposts'] -= $mergethread['unapprovedposts'];

			elseif($thread['visible'] == -1)
{
$updated_stats['deletedposts'] += $mergethread['replies']+$mergethread['unapprovedposts'];
$updated_stats['posts'] -= $mergethread['replies'];
$updated_stats['unapprovedposts'] -= $mergethread['unapprovedposts'];

			}


			}


			$new_stats = array();
if($updated_stats['posts'] < 0)
{

			$new_stats = array();
if($updated_stats['posts'] < 0)
{

Zeile 1648Zeile 1703
			{
update_forum_counters($mergethread['fid'], $new_stats);
update_forum_lastpost($mergethread['fid']);

			{
update_forum_counters($mergethread['fid'], $new_stats);
update_forum_lastpost($mergethread['fid']);

			}
}
// If we're in the same forum we need to at least update the last post information
else
{
update_forum_lastpost($thread['fid']);

			}






		}

if($thread['visible'] != $new_firstpost['visible'])

		}

if($thread['visible'] != $new_firstpost['visible'])

		{

		{

			// Correct counters
if($new_firstpost['visible'] == 1)
{

			// Correct counters
if($new_firstpost['visible'] == 1)
{

Zeile 1666Zeile 1716
			elseif($new_firstpost['visible'] == -1)
{
--$mergethread['deletedposts'];

			elseif($new_firstpost['visible'] == -1)
{
--$mergethread['deletedposts'];

			}

			}

			else
{
--$mergethread['unapprovedposts'];

			else
{
--$mergethread['unapprovedposts'];

			}

			}

			if($thread['visible'] == 1)
{
++$mergethread['replies'];

			if($thread['visible'] == 1)
{
++$mergethread['replies'];

			}

			}

			elseif($thread['visible'] == -1)
{
++$mergethread['deletedposts'];

			elseif($thread['visible'] == -1)
{
++$mergethread['deletedposts'];

Zeile 1685Zeile 1735
			}
}


			}
}


		if($thread['visible'] != $mergethread['visible'])
{
// Update user counters
if($thread['visible'] == 1)
{
foreach($user_posts as $uid => $user_counter)
{
update_user_counters($uid, array('postnum' => "+{$user_counter['postnum']}"));
}
}
elseif($mergethread['visible'] == 1)
{
foreach($user_posts as $uid => $user_counter)
{
update_user_counters($uid, array('postnum' => "-{$user_counter['postnum']}"));
}
}
}

if($mergethread['visible'] == 1)

		// Update user counters
foreach($user_posts as $uid => $counters)



















		{

		{

			foreach($user_posts as $uid => $user_counter)
{
update_user_counters($uid, array('threadnum' => "-{$user_counter['threadnum']}"));
}


			$update_array = array(
"postnum" => "+{$counters['postnum']}",
"threadnum" => "+{$counters['threadnum']}",
);
update_user_counters($uid, $update_array);

		}

$updated_stats = array(
"replies" => "+{$mergethread['replies']}",
"attachmentcount" => "+{$mergethread['attachmentcount']}",
"unapprovedposts" => "+{$mergethread['unapprovedposts']}",

		}

$updated_stats = array(
"replies" => "+{$mergethread['replies']}",
"attachmentcount" => "+{$mergethread['attachmentcount']}",
"unapprovedposts" => "+{$mergethread['unapprovedposts']}",

			"deletedposts" => "+{$mergethread['unapprovedposts']}",

 
			"deletedposts" => "+{$mergethread['deletedposts']}"
);
update_thread_counters($tid, $updated_stats);
update_last_post($tid);

			"deletedposts" => "+{$mergethread['deletedposts']}"
);
update_thread_counters($tid, $updated_stats);
update_last_post($tid);

 

// Forum last post has to be updated after thread
update_forum_lastpost($thread['fid']);

		return true;
}

/**
* Split posts into a new/existing thread
*

		return true;
}

/**
* Split posts into a new/existing thread
*

	 * @param array PIDs of posts to split
* @param int Original thread ID (this is only used as a base for the new

	 * @param array $pids PIDs of posts to split
* @param int $tid Original thread ID (this is only used as a base for the new

	 * thread; it can be set to 0 when the posts specified are coming from more
* than 1 thread)

	 * thread; it can be set to 0 when the posts specified are coming from more
* than 1 thread)

	 * @param int Destination forum
* @param string New thread subject
* @param int TID if moving into existing thread
* @return int New thread ID

	 * @param int $moveto Destination forum
* @param string $newsubject New thread subject
* @param int $destination_tid TID if moving into existing thread
* @return int|bool New thread ID or false on failure

	 */
function split_posts($pids, $tid, $moveto, $newsubject, $destination_tid=0)
{

	 */
function split_posts($pids, $tid, $moveto, $newsubject, $destination_tid=0)
{

Zeile 1746Zeile 1781

// Make sure we only have valid values
$pids = array_map('intval', $pids);


// Make sure we only have valid values
$pids = array_map('intval', $pids);





		$pids_list = implode(',', $pids);

// Get forum infos

		$pids_list = implode(',', $pids);

// Get forum infos

Zeile 1758Zeile 1793
		}

// Get the first split post

		}

// Get the first split post

		$post_info = get_post($pids[0]);




		$query = $db->simple_select('posts', 'pid,uid,visible,icon,username,dateline', 'pid IN ('.$pids_list.')', array('order_by' => 'dateline', 'order_dir' => 'asc', 'limit' => 1));

$post_info = $db->fetch_array($query);


		$visible = $post_info['visible'];

$forum_counters[$moveto] = array(

		$visible = $post_info['visible'];

$forum_counters[$moveto] = array(

Zeile 1782Zeile 1820
				"uid" => (int)$post_info['uid'],
"username" => $db->escape_string($post_info['username']),
"dateline" => (int)$post_info['dateline'],

				"uid" => (int)$post_info['uid'],
"username" => $db->escape_string($post_info['username']),
"dateline" => (int)$post_info['dateline'],

 
				"firstpost" => $post_info['pid'],

				"lastpost" => 0,
"lastposter" => '',
"visible" => (int)$visible,

				"lastpost" => 0,
"lastposter" => '',
"visible" => (int)$visible,

Zeile 1792Zeile 1831
			if($visible == 1)
{
++$forum_counters[$moveto]['threads'];

			if($visible == 1)
{
++$forum_counters[$moveto]['threads'];

 
				if(!isset($user_counters[$newthread['uid']]))
{
$user_counters[$newthread['uid']] = array(
'postnum' => 0,
'threadnum' => 0
);
}
++$user_counters[$newthread['uid']]['threadnum'];

			}
elseif($visible == -1)
{
++$forum_counters[$moveto]['deletedthreads'];

			}
elseif($visible == -1)
{
++$forum_counters[$moveto]['deletedthreads'];

			}

			}

			else
{
// Unapproved thread?

			else
{
// Unapproved thread?

Zeile 1815Zeile 1862

// Get selected posts before moving forums to keep old fid
$original_posts_query = $db->query("


// Get selected posts before moving forums to keep old fid
$original_posts_query = $db->query("

			SELECT p.pid, p.tid, p.fid, p.visible, p.uid, t.visible as threadvisible, t.firstpost, COUNT(a.aid) as postattachmentcount

			SELECT p.pid, p.tid, p.fid, p.visible, p.uid, p.dateline, t.visible as threadvisible, t.firstpost, COUNT(a.aid) as postattachmentcount

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
LEFT JOIN ".TABLE_PREFIX."attachments a ON (a.pid=p.pid AND a.visible=1)

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
LEFT JOIN ".TABLE_PREFIX."attachments a ON (a.pid=p.pid AND a.visible=1)

Zeile 1828Zeile 1875
			"tid" => $newtid,
"fid" => $moveto,
"replyto" => 0

			"tid" => $newtid,
"fid" => $moveto,
"replyto" => 0

		);

		);

		$db->update_query("posts", $sqlarray, "pid IN ($pids_list)");

$thread_counters[$newtid] = array(

		$db->update_query("posts", $sqlarray, "pid IN ($pids_list)");

$thread_counters[$newtid] = array(

Zeile 1837Zeile 1884
			'deletedposts' => 0,
'attachmentcount' => 0
);

			'deletedposts' => 0,
'attachmentcount' => 0
);





		// Get posts being merged
while($post = $db->fetch_array($original_posts_query))
{
if(!isset($thread_counters[$post['tid']]))

		// Get posts being merged
while($post = $db->fetch_array($original_posts_query))
{
if(!isset($thread_counters[$post['tid']]))

			{

			{

				$thread_counters[$post['tid']] = array(
'replies' => 0,
'unapprovedposts' => 0,

				$thread_counters[$post['tid']] = array(
'replies' => 0,
'unapprovedposts' => 0,

Zeile 1856Zeile 1903
					'posts' => 0,
'unapprovedposts' => 0,
'deletedposts' => 0

					'posts' => 0,
'unapprovedposts' => 0,
'deletedposts' => 0

 
				);
}
if(!isset($user_counters[$post['uid']]))
{
$user_counters[$post['uid']] = array(
'postnum' => 0,
'threadnum' => 0

				);
}
if($post['visible'] == 1)
{

				);
}
if($post['visible'] == 1)
{

				if(!isset($user_counters[$post['uid']]))
{
$user_counters[$post['uid']] = array(
'postnum' => 0,
'threadnum' => 0
);
}

 
				// Modify users' post counts
if($post['threadvisible'] == 1 && $forum_cache[$post['fid']]['usepostcounts'] == 1 && ($forum_cache[$moveto]['usepostcounts'] == 0 || $newthread['visible'] != 1))

				// Modify users' post counts
if($post['threadvisible'] == 1 && $forum_cache[$post['fid']]['usepostcounts'] == 1 && ($forum_cache[$moveto]['usepostcounts'] == 0 || $newthread['visible'] != 1))

				{

				{

					// Moving into a forum that doesn't count post counts

					// Moving into a forum that doesn't count post counts

					--$user_counters[$post['uid']]['postnum'];
}
elseif($newthread['visible'] == 1 && ($forum_cache[$post['fid']]['usepostcounts'] == 0 || $post['threadvisible'] != 1) && $forum_cache[$moveto]['usepostcounts'] == 1)
{
// Moving into a forum that does count post counts
++$user_counters[$post['uid']]['postnum'];
}

// Modify users' thread counts
if($post_info['uid'] == $post['uid'] && $forum_cache[$moveto]['usethreadcounts'] == 1 && $newthread['visible'] == 1)
{
// Moving into a forum that does count thread counts
++$user_counters[$post['uid']]['threadnum'];
}


					--$user_counters[$post['uid']]['postnum'];
}














				// Subtract 1 from the old thread's replies
--$thread_counters[$post['tid']]['replies'];

				// Subtract 1 from the old thread's replies
--$thread_counters[$post['tid']]['replies'];


// Add 1 to the new thread's replies
++$thread_counters[$newtid]['replies'];


 
			}
elseif($post['visible'] == 0)
{
// Unapproved post
// Subtract 1 from the old thread's unapproved posts
--$thread_counters[$post['tid']]['unapprovedposts'];

			}
elseif($post['visible'] == 0)
{
// Unapproved post
// Subtract 1 from the old thread's unapproved posts
--$thread_counters[$post['tid']]['unapprovedposts'];


// Add 1 to the new thread's unapproved posts
++$thread_counters[$newtid]['unapprovedposts'];

 
			}
elseif($post['visible'] == -1)

			}
elseif($post['visible'] == -1)

			{

			{

				// Soft deleted post
// Subtract 1 from the old thread's deleted posts
--$thread_counters[$post['tid']]['deletedposts'];

				// Soft deleted post
// Subtract 1 from the old thread's deleted posts
--$thread_counters[$post['tid']]['deletedposts'];

 
			}





				// Add 1 to the new thread's deleted posts
++$thread_counters[$newtid]['deletedposts'];
}


 
			// Subtract 1 from the old forum's posts
if($post['threadvisible'] == 1 && $post['visible'] == 1)
{
--$forum_counters[$post['fid']]['posts'];

			// Subtract 1 from the old forum's posts
if($post['threadvisible'] == 1 && $post['visible'] == 1)
{
--$forum_counters[$post['fid']]['posts'];

			}

			}

			elseif($post['threadvisible'] == 0 || ($post['visible'] == 0 && $post['threadvisible'] == 1))

			elseif($post['threadvisible'] == 0 || ($post['visible'] == 0 && $post['threadvisible'] == 1))

			{

			{

				--$forum_counters[$post['fid']]['unapprovedposts'];
}

				--$forum_counters[$post['fid']]['unapprovedposts'];
}

			else
{
--$forum_counters[$post['fid']]['deletedposts'];
}

// Add 1 to the new forum's posts
if($newthread['visible'] == 1 && $post['visible'] == 1)
{
++$forum_counters[$moveto]['posts'];
}
elseif($newthread['visible'] == 0 || ($post['visible'] == 0 && $newthread['visible'] == 1))
{
++$forum_counters[$moveto]['unapprovedposts'];
}
else
{
++$forum_counters[$moveto]['deletedposts'];
}


			else
{
--$forum_counters[$post['fid']]['deletedposts'];
}
















			// Subtract attachment counts from old thread and add to new thread (which are counted regardless of post or attachment unapproval at time of coding)
$thread_counters[$post['tid']]['attachmentcount'] -= $post['postattachmentcount'];
$thread_counters[$newtid]['attachmentcount'] += $post['postattachmentcount'];

if($post['firstpost'] == $post['pid'])

			// Subtract attachment counts from old thread and add to new thread (which are counted regardless of post or attachment unapproval at time of coding)
$thread_counters[$post['tid']]['attachmentcount'] -= $post['postattachmentcount'];
$thread_counters[$newtid]['attachmentcount'] += $post['postattachmentcount'];

if($post['firstpost'] == $post['pid'])

			{

			{

				// In some cases the first post of a thread changes
// Therefore resync the visible field to make sure they're the same if they're not

				// In some cases the first post of a thread changes
// Therefore resync the visible field to make sure they're the same if they're not

				$query = $db->simple_select("posts", "pid, visible", "tid='{$post['tid']}'", array('order_by' => 'dateline', 'order_dir' => 'asc', 'limit' => 1));

				$query = $db->simple_select("posts", "pid, visible, uid", "tid='{$post['tid']}'", array('order_by' => 'dateline', 'order_dir' => 'asc', 'limit' => 1));

				$new_firstpost = $db->fetch_array($query);

				$new_firstpost = $db->fetch_array($query);

 

if(!isset($user_counters[$new_firstpost['uid']]))
{
$user_counters[$new_firstpost['uid']] = array(
'postnum' => 0,
'threadnum' => 0
);
}

// Update post counters if visibility changes

				if($post['threadvisible'] != $new_firstpost['visible'])
{
$db->update_query("posts", array('visible' => $post['threadvisible']), "pid='{$new_firstpost['pid']}'");

				if($post['threadvisible'] != $new_firstpost['visible'])
{
$db->update_query("posts", array('visible' => $post['threadvisible']), "pid='{$new_firstpost['pid']}'");

					// Correct counters

					// Subtract new first post

					if($new_firstpost['visible'] == 1)
{
--$thread_counters[$post['tid']]['replies'];

					if($new_firstpost['visible'] == 1)
{
--$thread_counters[$post['tid']]['replies'];

 
						if($post['threadvisible'] == 1 && $forum_cache[$post['fid']]['usepostcounts'] == 1)
{
--$user_counters[$new_firstpost['uid']]['postnum'];
}

					}
elseif($new_firstpost['visible'] == -1)
{

					}
elseif($new_firstpost['visible'] == -1)
{

Zeile 1966Zeile 1991
					{
--$thread_counters[$post['tid']]['unapprovedposts'];
}

					{
--$thread_counters[$post['tid']]['unapprovedposts'];
}

 
					if($post['threadvisible'] == 0 || ($new_firstpost['visible'] == 0 && $post['threadvisible'] == 1))
{
--$forum_counters[$post['fid']]['unapprovedposts'];
}
else
{
--$forum_counters[$post['fid']]['deletedposts'];
}

// Add old first post

					if($post['threadvisible'] == 1)
{
++$thread_counters[$post['tid']]['replies'];

					if($post['threadvisible'] == 1)
{
++$thread_counters[$post['tid']]['replies'];

 
						++$forum_counters[$post['fid']]['posts'];
if($forum_cache[$post['fid']]['usepostcounts'] == 1)
{
++$user_counters[$new_firstpost['uid']]['postnum'];
}

					}
elseif($post['threadvisible'] == -1)
{
++$thread_counters[$post['tid']]['deletedposts'];

					}
elseif($post['threadvisible'] == -1)
{
++$thread_counters[$post['tid']]['deletedposts'];

 
						++$forum_counters[$post['fid']]['deletedposts'];

					}
else
{
++$thread_counters[$post['tid']]['unapprovedposts'];

					}
else
{
++$thread_counters[$post['tid']]['unapprovedposts'];

 
						++$forum_counters[$post['fid']]['unapprovedposts'];

					}

					}

 
				}

// Update user thread counter if thread opener changes
if($post['threadvisible'] == 1 && $forum_cache[$post['fid']]['usethreadcounts'] == 1 && $post['uid'] != $new_firstpost['uid'])
{
// Subtract thread from old thread opener
--$user_counters[$post['uid']]['threadnum'];
// Add thread to new thread opener
++$user_counters[$new_firstpost['uid']]['threadnum'];

				}
update_first_post($post['tid']);

				}
update_first_post($post['tid']);

 
			}

// This is the new first post of an existing thread?
if($post['pid'] == $post_info['pid'] && $post['dateline'] < $newthread['dateline'])
{
// Update post counters if visibility changes
if($post['visible'] != $newthread['visible'])
{
$db->update_query("posts", array('visible' => $newthread['visible']), "pid='{$post['pid']}'");

// This is needed to update the forum counters correctly
$post['visible'] = $newthread['visible'];
}

// Update user thread counter if thread opener changes
if($newthread['visible'] == 1 && $forum_cache[$newthread['fid']]['usethreadcounts'] == 1 && $post['uid'] != $newthread['uid'])
{
// Add thread to new thread opener
++$user_counters[$post['uid']]['threadnum'];
if(!isset($user_counters[$newthread['uid']]))
{
$user_counters[$newthread['uid']] = array(
'postnum' => 0,
'threadnum' => 0
);
}
// Subtract thread from old thread opener
--$user_counters[$newthread['uid']]['threadnum'];
}
update_first_post($newtid);
}

if($post['visible'] == 1)
{
// Modify users' post counts
if($newthread['visible'] == 1 && ($forum_cache[$post['fid']]['usepostcounts'] == 0 || $post['threadvisible'] != 1) && $forum_cache[$moveto]['usepostcounts'] == 1)
{
// Moving into a forum that does count post counts
++$user_counters[$post['uid']]['postnum'];
}

// Add 1 to the new thread's replies
++$thread_counters[$newtid]['replies'];
}
elseif($post['visible'] == 0)
{
// Unapproved post
// Add 1 to the new thread's unapproved posts
++$thread_counters[$newtid]['unapprovedposts'];
}
elseif($post['visible'] == -1)
{
// Soft deleted post
// Add 1 to the new thread's deleted posts
++$thread_counters[$newtid]['deletedposts'];
}

// Add 1 to the new forum's posts
if($newthread['visible'] == 1 && $post['visible'] == 1)
{
++$forum_counters[$moveto]['posts'];
}
elseif($newthread['visible'] == 0 || ($post['visible'] == 0 && $newthread['visible'] == 1))
{
++$forum_counters[$moveto]['unapprovedposts'];
}
else
{
++$forum_counters[$moveto]['deletedposts'];

			}
}

			}
}

 


		if($destination_tid == 0 && $newthread['visible'] == 1)
{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post

		if($destination_tid == 0 && $newthread['visible'] == 1)
{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post

Zeile 1991Zeile 2112
		{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post
--$thread_counters[$newtid]['unapprovedposts'];

		{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post
--$thread_counters[$newtid]['unapprovedposts'];

		}

		}

		elseif($destination_tid == 0 && $newthread['visible'] == -1)
{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post

		elseif($destination_tid == 0 && $newthread['visible'] == -1)
{
// If splitting into a new thread, subtract one from the thread's reply count to compensate for the original post

Zeile 2087Zeile 2208
	/**
* Move multiple threads to new forum
*

	/**
* Move multiple threads to new forum
*

	 * @param array Thread IDs
* @param int Destination forum
* @return boolean true



	 * @param array $tids Thread IDs
* @param int $moveto Destination forum
* @return boolean
*
* @deprecated Iterate over move_thread instead

	 */
function move_threads($tids, $moveto)
{

	 */
function move_threads($tids, $moveto)
{

Zeile 2103Zeile 2226
		$moveto = (int)$moveto;

$newforum = get_forum($moveto);

		$moveto = (int)$moveto;

$newforum = get_forum($moveto);

		



		if(empty($tids) || !$newforum)
{
return false;

		if(empty($tids) || !$newforum)
{
return false;

Zeile 2115Zeile 2238
		while($thread = $db->fetch_array($query))
{
$forum = get_forum($thread['fid']);

		while($thread = $db->fetch_array($query))
{
$forum = get_forum($thread['fid']);





			if(!isset($forum_counters[$thread['fid']]))
{
$forum_counters[$thread['fid']] = array(

			if(!isset($forum_counters[$thread['fid']]))
{
$forum_counters[$thread['fid']] = array(

Zeile 2125Zeile 2248
					'unapprovedthreads' => 0,
'deletedthreads' => 0,
'deletedposts' => 0

					'unapprovedthreads' => 0,
'deletedthreads' => 0,
'deletedposts' => 0

				);

				);

			}


			}


			if(!isset($user_counters[$thread['uid']]['num_threads']))

			if(!isset($user_counters[$thread['uid']]))

			{

			{

				$user_counters[$thread['uid']]['num_threads'] = 0;




				$user_counters[$thread['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);

			}

if($thread['visible'] == 1)

			}

if($thread['visible'] == 1)

Zeile 2155Zeile 2281
				}

$query1 = $db->query("

				}

$query1 = $db->query("

					SELECT COUNT(p.pid) AS posts, p.visible, u.uid

					SELECT COUNT(p.pid) AS posts, u.uid

					FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)

					FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=p.uid)

					WHERE p.tid = '{$thread['tid']}'
GROUP BY p.visible, u.uid

					WHERE p.tid = '{$thread['tid']}' AND p.visible=1
GROUP BY u.uid

					ORDER BY posts DESC
");
while($posters = $db->fetch_array($query1))
{

					ORDER BY posts DESC
");
while($posters = $db->fetch_array($query1))
{

					if(!isset($user_counters[$posters['uid']]['num_posts']))

					if(!isset($user_counters[$posters['uid']]))

					{

					{

						$user_counters[$posters['uid']]['num_posts'] = 0;




						$user_counters[$posters['uid']] = array(
'num_posts' => 0,
'num_threads' => 0
);

					}


					}


					if($newforum['usepostcounts'] != 0 && $forum['usepostcounts'] == 0 && $posters['visible'] == 1)

					if($newforum['usepostcounts'] != 0 && $forum['usepostcounts'] == 0)

					{
$user_counters[$posters['uid']]['num_posts'] += $posters['posts'];
}

					{
$user_counters[$posters['uid']]['num_posts'] += $posters['posts'];
}

					else if($newforum['usepostcounts'] == 0 && $forum['usepostcounts'] != 0 && $posters['visible'] == 1)

					else if($newforum['usepostcounts'] == 0 && $forum['usepostcounts'] != 0)

					{
$user_counters[$posters['uid']]['num_posts'] -= $posters['posts'];
}

					{
$user_counters[$posters['uid']]['num_posts'] -= $posters['posts'];
}

Zeile 2236Zeile 2365

$arguments = array("tids" => $tids, "moveto" => $moveto);
$plugins->run_hooks("class_moderation_move_threads", $arguments);


$arguments = array("tids" => $tids, "moveto" => $moveto);
$plugins->run_hooks("class_moderation_move_threads", $arguments);

		



		if(!empty($user_counters))

		if(!empty($user_counters))

		{

		{

			foreach($user_counters as $uid => $counters)
{
$update_array = array(

			foreach($user_counters as $uid => $counters)
{
$update_array = array(

Zeile 2260Zeile 2389
					'unapprovedthreads' => "-{$counter['unapprovedthreads']}",
'deletedposts' => "-{$counter['deletedposts']}",
'deletedthreads' => "-{$counter['deletedthreads']}"

					'unapprovedthreads' => "-{$counter['unapprovedthreads']}",
'deletedposts' => "-{$counter['deletedposts']}",
'deletedthreads' => "-{$counter['deletedthreads']}"

					



				);
update_forum_counters($fid, $updated_count);
update_forum_lastpost($fid);

				);
update_forum_counters($fid, $updated_count);
update_forum_lastpost($fid);

Zeile 2288Zeile 2417
	/**
* Approve multiple posts
*

	/**
* Approve multiple posts
*

	 * @param array PIDs
* @return boolean true

	 * @param array $pids PIDs
* @return boolean

	 */
function approve_posts($pids)
{

	 */
function approve_posts($pids)
{

Zeile 2300Zeile 2429
		if(empty($pids))
{
return false;

		if(empty($pids))
{
return false;

		}


		}


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


Zeile 2340Zeile 2469

$query = $db->query("
SELECT p.pid, p.tid, p.fid, p.uid, t.visible AS threadvisible


$query = $db->query("
SELECT p.pid, p.tid, p.fid, p.uid, t.visible AS threadvisible

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)

			WHERE p.pid IN ($pid_list) AND p.visible = '0' AND t.firstpost != p.pid
");
while($post = $db->fetch_array($query))

			WHERE p.pid IN ($pid_list) AND p.visible = '0' AND t.firstpost != p.pid
");
while($post = $db->fetch_array($query))

Zeile 2349Zeile 2478
			$pids[] = $post['pid'];

if(!isset($thread_counters[$post['tid']]))

			$pids[] = $post['pid'];

if(!isset($thread_counters[$post['tid']]))

			{

			{

				$thread_counters[$post['tid']] = array(
'replies' => 0
);

				$thread_counters[$post['tid']] = array(
'replies' => 0
);

			}


			}


			++$thread_counters[$post['tid']]['replies'];

// If the thread of this post is unapproved then we've already taken into account this counter as implied.
// Updating it again would cause it to double count

			++$thread_counters[$post['tid']]['replies'];

// If the thread of this post is unapproved then we've already taken into account this counter as implied.
// Updating it again would cause it to double count

			if($post['threadvisible'] != 0)

			if($post['threadvisible'] == 1)

			{
if(!isset($forum_counters[$post['fid']]))
{

			{
if(!isset($forum_counters[$post['fid']]))
{

Zeile 2368Zeile 2497
					);
}
++$forum_counters[$post['fid']]['num_posts'];

					);
}
++$forum_counters[$post['fid']]['num_posts'];

			}


			}


			$forum = get_forum($post['fid']);

// If post counts enabled in this forum and the thread is approved, add 1

			$forum = get_forum($post['fid']);

// If post counts enabled in this forum and the thread is approved, add 1

Zeile 2380Zeile 2509
					$user_counters[$post['uid']] = 0;
}
++$user_counters[$post['uid']];

					$user_counters[$post['uid']] = 0;
}
++$user_counters[$post['uid']];

			}
}

if(empty($pids) && empty($threads_to_update))
{
return false;
}

if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $approve, $where);
}


			}
}

if(empty($pids) && empty($threads_to_update))
{
return false;
}

if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $approve, $where);
}


		$plugins->run_hooks("class_moderation_approve_posts", $pids);

if(!empty($thread_counters))

		$plugins->run_hooks("class_moderation_approve_posts", $pids);

if(!empty($thread_counters))

Zeile 2406Zeile 2535
				);
update_thread_counters($tid, $counters_update);
update_last_post($tid);

				);
update_thread_counters($tid, $counters_update);
update_last_post($tid);

			}

			}

		}

if(!empty($forum_counters))

		}

if(!empty($forum_counters))

Zeile 2419Zeile 2548
				);
update_forum_counters($fid, $updated_forum_stats);
update_forum_lastpost($fid);

				);
update_forum_counters($fid, $updated_forum_stats);
update_forum_lastpost($fid);

			}

			}

		}

if(!empty($user_counters))

		}

if(!empty($user_counters))

Zeile 2432Zeile 2561

return true;
}


return true;
}





	/**
* Unapprove multiple posts
*

	/**
* Unapprove multiple posts
*

	 * @param array PIDs
* @return boolean true

	 * @param array $pids PIDs
* @return boolean

	 */
function unapprove_posts($pids)
{
global $db, $cache, $plugins;

if(empty($pids))

	 */
function unapprove_posts($pids)
{
global $db, $cache, $plugins;

if(empty($pids))

		{
return false;
}


		{
return false;
}


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


Zeile 2548Zeile 2677
					$user_counters[$post['uid']] = 0;
}
--$user_counters[$post['uid']];

					$user_counters[$post['uid']] = 0;
}
--$user_counters[$post['uid']];

			}
}


			}
}


		if(empty($pids) && empty($threads_to_update))
{
return false;

		if(empty($pids) && empty($threads_to_update))
{
return false;

		}

		}


if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $approve, $where);


if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $approve, $where);

		}

		}


$plugins->run_hooks("class_moderation_unapprove_posts", $pids);



$plugins->run_hooks("class_moderation_unapprove_posts", $pids);


Zeile 2572Zeile 2701
					"unapprovedposts" => "+".$counters['unapprovedposts'],
"replies" => "-".$counters['replies'],
"deletedposts" => "-".$counters['deletedposts']

					"unapprovedposts" => "+".$counters['unapprovedposts'],
"replies" => "-".$counters['replies'],
"deletedposts" => "-".$counters['deletedposts']

				);

				);


update_thread_counters($tid, $counters_update);
update_last_post($tid);


update_thread_counters($tid, $counters_update);
update_last_post($tid);

Zeile 2590Zeile 2719
				);
update_forum_counters($fid, $updated_forum_stats);
update_forum_lastpost($fid);

				);
update_forum_counters($fid, $updated_forum_stats);
update_forum_lastpost($fid);

			}
}


			}
}


		if(!empty($user_counters))
{
foreach($user_counters as $uid => $counter)
{
update_user_counters($uid, array('postnum' => "{$counter}"));

		if(!empty($user_counters))
{
foreach($user_counters as $uid => $counter)
{
update_user_counters($uid, array('postnum' => "{$counter}"));

			}
}

return true;
}

			}
}

return true;
}


/**
* Change thread subject
*


/**
* Change thread subject
*

	 * @param mixed Thread ID(s)
* @param string Format of new subject (with {subject})
* @return boolean true

	 * @param int|array $tids Thread ID(s)
* @param string $format Format of new subject (with {subject})
* @return boolean

	 */
function change_thread_subject($tids, $format)
{

	 */
function change_thread_subject($tids, $format)
{

Zeile 2617Zeile 2746

// Get tids into list
if(!is_array($tids))


// Get tids into list
if(!is_array($tids))

		{

		{

			$tids = array($tids);
}

			$tids = array($tids);
}





		// Make sure we only have valid values
$tids = array_map('intval', $tids);

		// Make sure we only have valid values
$tids = array_map('intval', $tids);





		if(empty($tids))
{
return false;

		if(empty($tids))
{
return false;

		}

$tid_list = implode(',', $tids);

		}

$tid_list = implode(',', $tids);


// Get original subject
$query = $db->simple_select("threads", "subject, tid", "tid IN ($tid_list)");


// Get original subject
$query = $db->simple_select("threads", "subject, tid", "tid IN ($tid_list)");

Zeile 2647Zeile 2776

$arguments = array("tids" => $tids, "format" => $format);
$plugins->run_hooks("class_moderation_change_thread_subject", $arguments);


$arguments = array("tids" => $tids, "format" => $format);
$plugins->run_hooks("class_moderation_change_thread_subject", $arguments);





		return true;
}

/**
* Add thread expiry
*

		return true;
}

/**
* Add thread expiry
*

	 * @param int Thread ID
* @param int Timestamp when the thread is deleted
* @return boolean true

	 * @param int $tid Thread ID
* @param int $deletetime Timestamp when the thread is deleted
* @return boolean

	 */
function expire_thread($tid, $deletetime)
{

	 */
function expire_thread($tid, $deletetime)
{

Zeile 2683Zeile 2812
	/**
* Toggle post visibility (approved/unapproved)
*

	/**
* Toggle post visibility (approved/unapproved)
*

	 * @param array Post IDs

	 * @param array $pids Post IDs

	 * @return boolean true
*/
function toggle_post_visibility($pids)

	 * @return boolean true
*/
function toggle_post_visibility($pids)

Zeile 2713Zeile 2842
		if(is_array($approve))
{
$this->approve_posts($approve);

		if(is_array($approve))
{
$this->approve_posts($approve);

		}
return true;

		}
return true;

	}

/**
* Toggle post visibility (deleted/restored)

	}

/**
* Toggle post visibility (deleted/restored)

	 *
* @param array Post IDs
* @return boolean true

	 *
* @param array $pids Post IDs
* @return boolean true

	 */
function toggle_post_softdelete($pids)

	 */
function toggle_post_softdelete($pids)

	{
global $db;


	{
global $db;


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


		// Make sure we only have valid values
$pids = array_map('intval', $pids);


Zeile 2737Zeile 2866
			if($post['visible'] != -1)
{
$delete[] = $post['pid'];

			if($post['visible'] != -1)
{
$delete[] = $post['pid'];

			}

			}

			else
{
$restore[] = $post['pid'];

			else
{
$restore[] = $post['pid'];

Zeile 2757Zeile 2886
	/**
* Toggle thread visibility (approved/unapproved)
*

	/**
* Toggle thread visibility (approved/unapproved)
*

	 * @param array Thread IDs
* @param int Forum ID

	 * @param array $tids Thread IDs
* @param int $fid Forum ID

	 * @return boolean true
*/
function toggle_thread_visibility($tids, $fid)

	 * @return boolean true
*/
function toggle_thread_visibility($tids, $fid)

	{
global $db;

// Make sure we only have valid values
$tids = array_map('intval', $tids);

	{
global $db;

// Make sure we only have valid values
$tids = array_map('intval', $tids);

		$fid = (int)$fid;

$tid_list = implode(',', $tids);

		$fid = (int)$fid;

$tid_list = implode(',', $tids);

Zeile 2796Zeile 2925
	/**
* Toggle thread visibility (deleted/restored)
*

	/**
* Toggle thread visibility (deleted/restored)
*

	 * @param array Thread IDs
* @param int Forum ID

	 * @param array $tids Thread IDs


	 * @return boolean true
*/

	 * @return boolean true
*/

	function toggle_thread_softdelete($tids, $fid)

	function toggle_thread_softdelete($tids)

	{
global $db;

// Make sure we only have valid values
$tids = array_map('intval', $tids);

	{
global $db;

// Make sure we only have valid values
$tids = array_map('intval', $tids);

		$fid = (int)$fid;

 

$tid_list = implode(',', $tids);
$query = $db->simple_select("threads", 'tid, visible', "tid IN ($tid_list)");


$tid_list = implode(',', $tids);
$query = $db->simple_select("threads", 'tid, visible', "tid IN ($tid_list)");

Zeile 2823Zeile 2950
		}
if(is_array($delete))
{

		}
if(is_array($delete))
{

			$this->soft_delete_threads($delete, $fid);

			$this->soft_delete_threads($delete);

		}
if(is_array($restore))
{

		}
if(is_array($restore))
{

			$this->restore_threads($restore, $fid);

			$this->restore_threads($restore);

		}
return true;
}

		}
return true;
}

Zeile 2835Zeile 2962
	/**
* Toggle threads open/closed
*

	/**
* Toggle threads open/closed
*

	 * @param array Thread IDs

	 * @param array $tids Thread IDs

	 * @return boolean true
*/
function toggle_thread_status($tids)

	 * @return boolean true
*/
function toggle_thread_status($tids)

Zeile 2872Zeile 2999
	/**
* Toggle threads stick/unstick
*

	/**
* Toggle threads stick/unstick
*

	 * @param array Thread IDs

	 * @param array $tids Thread IDs

	 * @return boolean true
*/
function toggle_thread_importance($tids)

	 * @return boolean true
*/
function toggle_thread_importance($tids)

	{

	{

		global $db;

		global $db;





		// Make sure we only have valid values
$tids = array_map('intval', $tids);

		// Make sure we only have valid values
$tids = array_map('intval', $tids);





		$stick = array();
$unstick = array();


		$stick = array();
$unstick = array();


Zeile 2901Zeile 3028
		if(!empty($stick))
{
$this->stick_threads($stick);

		if(!empty($stick))
{
$this->stick_threads($stick);

		}

		}

		if(!empty($unstick))
{
$this->unstick_threads($unstick);

		if(!empty($unstick))
{
$this->unstick_threads($unstick);

Zeile 2912Zeile 3039
	/**
* Remove thread subscriptions (from one or multiple threads in the same forum)
*

	/**
* Remove thread subscriptions (from one or multiple threads in the same forum)
*

	 * @param int $tids Thread ID, or an array of thread IDs from the same forum.

	 * @param int|array $tids Thread ID, or an array of thread IDs from the same forum.

	 * @param boolean $all True (default) to delete all subscriptions, false to only delete subscriptions from users with no permission to read the thread
* @param int $fid (Only applies if $all is false) The forum ID of the thread

	 * @param boolean $all True (default) to delete all subscriptions, false to only delete subscriptions from users with no permission to read the thread
* @param int $fid (Only applies if $all is false) The forum ID of the thread

	 * @return boolean true

	 * @return boolean

	 */
function remove_thread_subscriptions($tids, $all = true, $fid = 0)

	 */
function remove_thread_subscriptions($tids, $all = true, $fid = 0)

	{
global $db, $plugins;

// Format thread IDs
if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;

	{
global $db, $plugins;

// Format thread IDs
if(!is_array($tids))
{
$tids = array($tids);
}

if(empty($tids))
{
return false;

		}

// Make sure we only have valid values

		}

// Make sure we only have valid values

Zeile 2945Zeile 3072
			$forum_parentlist = get_parent_list($fid);
$query = $db->simple_select("forumpermissions", "gid", "fid IN ({$forum_parentlist}) AND (canview=0 OR canviewthreads=0)");
$groups = array();

			$forum_parentlist = get_parent_list($fid);
$query = $db->simple_select("forumpermissions", "gid", "fid IN ({$forum_parentlist}) AND (canview=0 OR canviewthreads=0)");
$groups = array();

 
			$additional_groups = '';

			while($group = $db->fetch_array($query))
{
$groups[] = $group['gid'];
switch($db->type)

			while($group = $db->fetch_array($query))
{
$groups[] = $group['gid'];
switch($db->type)

				{

				{

					case "pgsql":
case "sqlite":
$additional_groups .= " OR ','||u.additionalgroups||',' LIKE ',{$group['gid']},'";

					case "pgsql":
case "sqlite":
$additional_groups .= " OR ','||u.additionalgroups||',' LIKE ',{$group['gid']},'";

Zeile 2979Zeile 3107
		else
{
$db->delete_query("threadsubscriptions", "tid IN ({$tids_csv})");

		else
{
$db->delete_query("threadsubscriptions", "tid IN ({$tids_csv})");

		}


		}


		$arguments = array("tids" => $tids, "all" => $all, "fid" => $fid);
$plugins->run_hooks("class_moderation_remove_thread_subscriptions", $arguments);

		$arguments = array("tids" => $tids, "all" => $all, "fid" => $fid);
$plugins->run_hooks("class_moderation_remove_thread_subscriptions", $arguments);


return true;
}

/**


return true;
}

/**

	 * Apply a thread prefix (to one or multiple threads in the same forum)
*

	 * Apply a thread prefix (to one or multiple threads in the same forum)
*

	 * @param int $tids Thread ID, or an array of thread IDs from the same forum.

	 * @param int|array $tids Thread ID, or an array of thread IDs from the same forum.

	 * @param int $prefix Prefix ID to apply to the threads

	 * @param int $prefix Prefix ID to apply to the threads

 
	 * @return bool

	 */
function apply_thread_prefix($tids, $prefix = 0)

	 */
function apply_thread_prefix($tids, $prefix = 0)

	{

	{

		global $db, $plugins;

// Format thread IDs
if(!is_array($tids))
{
$tids = array($tids);

		global $db, $plugins;

// Format thread IDs
if(!is_array($tids))
{
$tids = array($tids);

		}


		}


		if(empty($tids))
{
return false;
}

		if(empty($tids))
{
return false;
}





		// Make sure we only have valid values
$tids = array_map('intval', $tids);
$tids_csv = implode(',', $tids);

		// Make sure we only have valid values
$tids = array_map('intval', $tids);
$tids_csv = implode(',', $tids);

Zeile 3025Zeile 3154
	/**
* Soft delete multiple posts
*

	/**
* Soft delete multiple posts
*

	 * @param array PIDs
* @return boolean true

	 * @param array $pids PIDs
* @return boolean

	 */
function soft_delete_posts($pids)
{
global $db, $cache, $plugins;

if(empty($pids))

	 */
function soft_delete_posts($pids)
{
global $db, $cache, $plugins;

if(empty($pids))

		{
return false;

		{
return false;

		}

// Make sure we only have valid values

		}

// Make sure we only have valid values

Zeile 3136Zeile 3265
					$user_counters[$post['uid']] = 0;
}
--$user_counters[$post['uid']];

					$user_counters[$post['uid']] = 0;
}
--$user_counters[$post['uid']];

			}
}

if(empty($pids) && empty($threads_to_update))
{
return false;
}

if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $update, $where);
}

$plugins->run_hooks("class_moderation_soft_delete_posts", $pids);

if(is_array($thread_counters))
{
foreach($thread_counters as $tid => $counters)
{
$counters_update = array(


			}
}

if(empty($pids) && empty($threads_to_update))
{
return false;
}

if(!empty($pids))
{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $update, $where);
mark_reports($pids, "posts");
}

$plugins->run_hooks("class_moderation_soft_delete_posts", $pids);

if(is_array($thread_counters))
{
foreach($thread_counters as $tid => $counters)
{
$counters_update = array(

					"unapprovedposts" => "-".$counters['unapprovedposts'],
"replies" => "-".$counters['replies'],
"deletedposts" => "+".$counters['deletedposts']

					"unapprovedposts" => "-".$counters['unapprovedposts'],
"replies" => "-".$counters['replies'],
"deletedposts" => "+".$counters['deletedposts']

Zeile 3170Zeile 3300
		if(is_array($forum_counters))
{
foreach($forum_counters as $fid => $counters)

		if(is_array($forum_counters))
{
foreach($forum_counters as $fid => $counters)

			{

			{

				$updated_forum_stats = array(
'posts' => "-{$counters['num_posts']}",
'unapprovedposts' => "-{$counters['num_unapproved_posts']}",

				$updated_forum_stats = array(
'posts' => "-{$counters['num_posts']}",
'unapprovedposts' => "-{$counters['num_unapproved_posts']}",

Zeile 3195Zeile 3325
	/**
* Restore multiple posts
*

	/**
* Restore multiple posts
*

	 * @param array PIDs
* @return boolean true

	 * @param array $pids PIDs
* @return boolean

	 */
function restore_posts($pids)
{

	 */
function restore_posts($pids)
{

Zeile 3205Zeile 3335
		$num_posts = 0;

if(empty($pids))

		$num_posts = 0;

if(empty($pids))

		{
return false;
}

// Make sure we only have valid values
$pids = array_map('intval', $pids);


		{
return false;
}

// Make sure we only have valid values
$pids = array_map('intval', $pids);


		$pid_list = implode(',', $pids);
$pids = $threads_to_update = array();


		$pid_list = implode(',', $pids);
$pids = $threads_to_update = array();


Zeile 3343Zeile 3473
	/**
* Restore one or more threads
*

	/**
* Restore one or more threads
*

	 * @param array Thread IDs

	 * @param array|int $tids Thread ID(s)

	 * @return boolean true
*/
function restore_threads($tids)

	 * @return boolean true
*/
function restore_threads($tids)

Zeile 3373Zeile 3503
				continue;
}
$tid_list[] = $thread['tid'];

				continue;
}
$tid_list[] = $thread['tid'];





			$forum = get_forum($thread['fid']);

if(!isset($forum_counters[$forum['fid']]))

			$forum = get_forum($thread['fid']);

if(!isset($forum_counters[$forum['fid']]))

Zeile 3413Zeile 3543
				}
}


				}
}


			if($forum['usethreadcounts'] != 0)

			if($forum['usethreadcounts'] != 0 && substr($thread['closed'], 0, 6) != 'moved|')

			{
++$user_counters[$thread['uid']]['num_threads'];
}

			{
++$user_counters[$thread['uid']]['num_threads'];
}

Zeile 3479Zeile 3609
						"threadnum" => "+{$counters['num_threads']}",
);
update_user_counters($uid, $update_array);

						"threadnum" => "+{$counters['num_threads']}",
);
update_user_counters($uid, $update_array);

				}
}
}

				}
}
}

		return true;
}

/**
* Soft delete one or more threads
*

		return true;
}

/**
* Soft delete one or more threads
*

	 * @param array Thread IDs
* @return boolean true

	 * @param array|int Thread ID(s)
* @return boolean

	 */
function soft_delete_threads($tids)
{
global $db, $cache, $plugins;

if(!is_array($tids))

	 */
function soft_delete_threads($tids)
{
global $db, $cache, $plugins;

if(!is_array($tids))

		{

		{

			$tids = array($tids);
}

if(empty($tids))
{
return false;

			$tids = array($tids);
}

if(empty($tids))
{
return false;

		}

		}


// Make sure we only have valid values
$tids = array_map('intval', $tids);


// Make sure we only have valid values
$tids = array_map('intval', $tids);

Zeile 3516Zeile 3646
			$tid_moved_list .= "{$comma}'moved|{$tid}'";
$comma = ",";
}

			$tid_moved_list .= "{$comma}'moved|{$tid}'";
$comma = ",";
}





		$forum_counters = $user_counters = $posts_to_delete = array();

foreach($tids as $tid)

		$forum_counters = $user_counters = $posts_to_delete = array();

foreach($tids as $tid)

Zeile 3535Zeile 3665
						'num_deleted_posts' => 0,
'unapproved_threads' => 0,
'unapproved_posts' => 0

						'num_deleted_posts' => 0,
'unapproved_threads' => 0,
'unapproved_posts' => 0

					);
}

					);
}


if(!isset($user_counters[$thread['uid']]))
{


if(!isset($user_counters[$thread['uid']]))
{

Zeile 3550Zeile 3680
				$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['replies']+$thread['unapprovedposts']+1;

if($thread['visible'] == 1)

				$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['replies']+$thread['unapprovedposts']+1;

if($thread['visible'] == 1)

				{

				{

					++$forum_counters[$forum['fid']]['num_threads'];
$forum_counters[$forum['fid']]['num_posts'] += $thread['replies']+1; // Add implied invisible to count
$forum_counters[$forum['fid']]['unapproved_posts'] += $thread['unapprovedposts'];
}
else

					++$forum_counters[$forum['fid']]['num_threads'];
$forum_counters[$forum['fid']]['num_posts'] += $thread['replies']+1; // Add implied invisible to count
$forum_counters[$forum['fid']]['unapproved_posts'] += $thread['unapprovedposts'];
}
else

				{

				{

					++$forum_counters[$forum['fid']]['unapproved_threads'];
$forum_counters[$forum['fid']]['unapproved_posts'] += $thread['replies']+$thread['deletedposts']+$thread['unapprovedposts']+1; // Add implied invisible to count
$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['deletedposts'];

					++$forum_counters[$forum['fid']]['unapproved_threads'];
$forum_counters[$forum['fid']]['unapproved_posts'] += $thread['replies']+$thread['deletedposts']+$thread['unapprovedposts']+1; // Add implied invisible to count
$forum_counters[$forum['fid']]['num_deleted_posts'] += $thread['deletedposts'];

Zeile 3576Zeile 3706
					}
}


					}
}


				if($thread['visible'] == 1 && $forum['usethreadcounts'] != 0)

				if($thread['visible'] == 1 && $forum['usethreadcounts'] != 0 && substr($thread['closed'], 0, 6) != 'moved|')

				{
++$user_counters[$thread['uid']]['num_threads'];
}

				{
++$user_counters[$thread['uid']]['num_threads'];
}

Zeile 3591Zeile 3721
		// Soft delete redirects, too
$redirect_tids = array();
$query = $db->simple_select('threads', 'tid', "closed IN ({$tid_moved_list})");

		// Soft delete redirects, too
$redirect_tids = array();
$query = $db->simple_select('threads', 'tid', "closed IN ({$tid_moved_list})");

 

mark_reports($tids, "threads");


		while($redirect_tid = $db->fetch_field($query, 'tid'))
{
$redirect_tids[] = $redirect_tid;

		while($redirect_tid = $db->fetch_field($query, 'tid'))
{
$redirect_tids[] = $redirect_tid;