Vergleich inc/class_moderation.php - 1.8.5 - 1.8.29

  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)
{
global $db, $plugins;

	function open_threads($tids)
{
global $db, $plugins;

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


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


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

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

$closethread = array(
"closed" => 0,
);
$db->update_query("threads", $closethread, "tid IN ($tid_list)");

return true;
}

/**
* Stick one or more threads
*
* @param int Thread IDs
* @return boolean true
*/
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);


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

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

$closethread = array(
"closed" => 0,
);
$db->update_query("threads", $closethread, "tid IN ($tid_list)");

return true;
}

/**
* Stick one or more threads
*
* @param array|int $tids Thread ID(s)
* @return boolean
*/
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);


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

$stickthread = array(
"sticky" => 1,
);
$db->update_query("threads", $stickthread, "tid IN ($tid_list)");

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

$stickthread = array(
"sticky" => 1,
);
$db->update_query("threads", $stickthread, "tid IN ($tid_list)");


return true;
}


return true;
}


/**
* 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)

	{

	{

		global $db, $plugins;

		global $db, $plugins;





		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 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)
{
global $db, $plugins;

	 */
function remove_redirects($tid)
{
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'))
{
$this->delete_thread($redirect_tid);

		}

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

		}

		}


return true;
}


return true;
}

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)
{
global $db, $cache, $plugins;

	 */
function delete_thread($tid)
{
global $db, $cache, $plugins;





		$tid = (int)$tid;

		$tid = (int)$tid;





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

$thread = get_thread($tid);

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

$thread = get_thread($tid);

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

if(!function_exists("remove_attachments"))

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

if(!function_exists("remove_attachments"))

			{

			{

				require_once MYBB_ROOT."inc/functions_upload.php";
}


				require_once MYBB_ROOT."inc/functions_upload.php";
}


Zeile 219Zeile 219
				$num_unapproved_posts++;
}
elseif($post['visible'] == -1 || $thread['visible'] == -1)

				$num_unapproved_posts++;
}
elseif($post['visible'] == -1 || $thread['visible'] == -1)

			{

			{

				$num_deleted_posts++;
}
else

				$num_deleted_posts++;
}
else

			{

			{

				$num_approved_posts++;

// Count the post counts for each user to be subtracted
if($forum['usepostcounts'] != 0)

				$num_approved_posts++;

// Count the post counts for each user to be subtracted
if($forum['usepostcounts'] != 0)

				{

				{

					if(!isset($userposts[$post['uid']]['num_posts']))
{
$userposts[$post['uid']]['num_posts'] = 0;

					if(!isset($userposts[$post['uid']]['num_posts']))
{
$userposts[$post['uid']]['num_posts'] = 0;

					}

					}

					++$userposts[$post['uid']]['num_posts'];
}

					++$userposts[$post['uid']]['num_posts'];
}

			}
}


			}
}


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

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

Zeile 246Zeile 246
			}
++$userposts[$thread['uid']]['num_threads'];
}

			}
++$userposts[$thread['uid']]['num_threads'];
}





		// Remove post count from users
if($thread['visible'] == 1)
{

		// Remove post count from users
if($thread['visible'] == 1)
{

Zeile 254Zeile 254
			{
foreach($userposts as $uid => $subtract)
{

			{
foreach($userposts as $uid => $subtract)
{

					$update_array = array(
"postnum" => "-{$subtract['num_posts']}",
"threadnum" => "-{$subtract['num_threads']}",
);









					$update_array = array();

if(isset($subtract['num_posts']))
{
$update_array['postnum'] = "-{$subtract['num_posts']}";
}

if(isset($subtract['num_threads']))
{
$update_array['threadnum'] = "-{$subtract['num_threads']}";
}


					update_user_counters($uid, $update_array);
}
}

					update_user_counters($uid, $update_array);
}
}

Zeile 323Zeile 331
		// 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)
{
global $db, $plugins;


	 */
function delete_poll($pid)
{
global $db, $plugins;


		$pid = (int)$pid;


		$pid = (int)$pid;


		if(empty($pid))

		if(empty($pid))

		{
return false;
}

$plugins->run_hooks("class_moderation_delete_poll", $pid);

		{
return false;
}

$plugins->run_hooks("class_moderation_delete_poll", $pid);


$db->delete_query("polls", "pid='$pid'");
$db->delete_query("pollvotes", "pid='$pid'");


$db->delete_query("polls", "pid='$pid'");
$db->delete_query("pollvotes", "pid='$pid'");

Zeile 361Zeile 370
	/**
* 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 382Zeile 391
		$tids = array_map('intval', $tids);

$tid_list = $forum_counters = $user_counters = $posts_to_approve = array();

		$tids = array_map('intval', $tids);

$tid_list = $forum_counters = $user_counters = $posts_to_approve = array();


foreach($tids as $tid)
{
$thread = get_thread($tid);
if(!$thread || $thread['visible'] == 1 || $thread['visible'] == -1)
{




$tids_list = implode(",", $tids);
$query = $db->simple_select("threads", "*", "tid IN ($tids_list)");

while($thread = $db->fetch_array($query))
{
if($thread['visible'] == 1 || $thread['visible'] == -1)
{

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

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

Zeile 420Zeile 431
			if($forum['usepostcounts'] != 0)
{
// On approving thread restore user post counts

			if($forum['usepostcounts'] != 0)
{
// On approving thread restore user post counts

				$query = $db->simple_select("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))

				$query2 = $db->simple_select("posts", "COUNT(pid) as posts, uid", "tid='{$thread['tid']}' AND (visible='1' OR pid='{$thread['firstpost']}') AND uid > 0 GROUP BY uid");
while($counter = $db->fetch_array($query2))

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

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

Zeile 501Zeile 512

/**
* 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);
}


			$tids = array($tids);
}


Zeile 533Zeile 544

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



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


		foreach($tids as $tid)




		$tids_list = implode(",", $tids);
$query = $db->simple_select("threads", "*", "tid IN ($tids_list)");

while($thread = $db->fetch_array($query))

		{

		{

			$thread = get_thread($tid);

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

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

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

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

Zeile 555Zeile 568
				if(!isset($user_counters[$thread['uid']]))
{
$user_counters[$thread['uid']] = array(

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

						'num_posts' => 0,
'num_threads' => 0
);
}

						'num_posts' => 0,
'num_threads' => 0
);
}


++$forum_counters[$forum['fid']]['num_unapprovedthreads'];
$forum_counters[$forum['fid']]['num_unapprovedposts'] += $thread['replies']+$thread['deletedposts']+1;


++$forum_counters[$forum['fid']]['num_unapprovedthreads'];
$forum_counters[$forum['fid']]['num_unapprovedposts'] += $thread['replies']+$thread['deletedposts']+1;

Zeile 579Zeile 592
				// On unapproving thread update user post counts
if($thread['visible'] == 1 && $forum['usepostcounts'] != 0)
{

				// On unapproving thread update user post counts
if($thread['visible'] == 1 && $forum['usepostcounts'] != 0)
{

					$query = $db->simple_select("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))

					$query2 = $db->simple_select("posts", "COUNT(pid) AS posts, uid", "tid='{$thread['tid']}' AND (visible='1' OR pid='{$thread['firstpost']}') AND uid > 0 GROUP BY uid");
while($counter = $db->fetch_array($query2))

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

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

Zeile 613Zeile 626
		if(!empty($posts_to_unapprove))
{
$db->update_query("posts", $approve, "pid IN (".implode(',', $posts_to_unapprove).")");

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

		}

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

		}

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


if(!empty($forum_counters))
{
foreach($forum_counters as $fid => $counters)
{
// Update stats


if(!empty($forum_counters))
{
foreach($forum_counters as $fid => $counters)
{
// Update stats

				$update_array = array(

				$update_array = array(

					"threads" => "-{$counters['num_threads']}",
"unapprovedthreads" => "+{$counters['num_unapprovedthreads']}",
"posts" => "-{$counters['num_posts']}",
"unapprovedposts" => "+{$counters['num_unapprovedposts']}",
"deletedthreads" => "-{$counters['num_deletedthreads']}",
"deletedposts" => "-{$counters['num_deletedposts']}"

					"threads" => "-{$counters['num_threads']}",
"unapprovedthreads" => "+{$counters['num_unapprovedthreads']}",
"posts" => "-{$counters['num_posts']}",
"unapprovedposts" => "+{$counters['num_unapprovedposts']}",
"deletedthreads" => "-{$counters['num_deletedthreads']}",
"deletedposts" => "-{$counters['num_deletedposts']}"

				);

				);

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

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

Zeile 653Zeile 666
	/**
* 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 684
		");
$post = $db->fetch_array($query);
if(!$post)

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

		{
return false;

		{
return false;

		}

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

		}

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

Zeile 698Zeile 711

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


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

		{
$update_array = array(
"unapprovedposts" => "-1"
);
}
elseif($post['visible'] == -1)
{
$update_array = array(

		{
$update_array = array(
"unapprovedposts" => "-1"
);
}
elseif($post['visible'] == -1)
{
$update_array = array(

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

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

Zeile 726Zeile 739
		{
$update_array = array(
"unapprovedposts" => "-1"

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

			);
}

			);
}

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

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

Zeile 750Zeile 763
	/**
* 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 779Zeile 791
			LEFT JOIN ".TABLE_PREFIX."attachments a ON (a.pid=p.pid AND a.visible=1)
WHERE p.pid IN($pidin)
GROUP BY p.pid

			LEFT JOIN ".TABLE_PREFIX."attachments a ON (a.pid=p.pid AND a.visible=1)
WHERE p.pid IN($pidin)
GROUP BY p.pid

			ORDER BY p.dateline ASC

			ORDER BY p.dateline ASC, p.pid ASC

		");
$message = '';
$threads = $forum_counters = $thread_counters = $user_counters = array();

		");
$message = '';
$threads = $forum_counters = $thread_counters = $user_counters = array();

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

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

 
				$visible = $post['visible'];

			}
else
{

			}
else
{

Zeile 845Zeile 858
					{
--$user_counters[$post['uid']]['num_threads'];
}

					{
--$user_counters[$post['uid']]['num_threads'];
}

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

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

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

Zeile 856Zeile 870
					// 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 870Zeile 883
				else
{
--$forum_counters[$post['fid']]['deletedposts'];

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

 
				}

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

				}
}
}

				}
}
}

Zeile 895Zeile 914
		{
// 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, uid, 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, pid', '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 953Zeile 972
					'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);
}
}

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

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

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

			{
$updated_forum_stats = array(
'posts' => signed($counters['num_posts']),

			{
$updated_forum_stats = array(
'posts' => signed($counters['num_posts']),

Zeile 991Zeile 1010
	/**
* 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 1054Zeile 1073
				);
$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":
case "sqlite":
$query = $db->simple_select("threadprefixes", "COUNT(*) as num_prefixes", "(','||forums||',' LIKE '%,$new_fid,%' OR forums='-1') AND pid='".$thread['prefix']."'");
break;
default:
$query = $db->simple_select("threadprefixes", "COUNT(*) as num_prefixes", "(CONCAT(',',forums,',') LIKE '%,$new_fid,%' OR forums='-1') AND pid='".$thread['prefix']."'");
}
if($db->fetch_field($query, "num_prefixes") == 0)
{
$sqlarray = array(
"prefix" => 0,


// 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;
default:
$query = $db->simple_select("threadprefixes", "COUNT(*) as num_prefixes", "(CONCAT(',',forums,',') LIKE '%,$new_fid,%' OR forums='-1') AND pid='".$thread['prefix']."'");
}
if($db->fetch_field($query, "num_prefixes") == 0)
{
$sqlarray = array(
"prefix" => 0,

						);
$db->update_query("threads", $sqlarray, "tid='$tid'");
}

						);
$db->update_query("threads", $sqlarray, "tid='$tid'");
}

Zeile 1164Zeile 1183
						'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 1176Zeile 1195

$query = $db->simple_select("pollvotes", "*", "pid = '{$poll['pid']}'");
while($pollvote = $db->fetch_array($query))


$query = $db->simple_select("pollvotes", "*", "pid = '{$poll['pid']}'");
while($pollvote = $db->fetch_array($query))

					{

					{

						$pollvote_array = array(
'pid' => $new_pid,
'uid' => $pollvote['uid'],

						$pollvote_array = array(
'pid' => $new_pid,
'uid' => $pollvote['uid'],

Zeile 1224Zeile 1243
							'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 1388Zeile 1407
	/**
* 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)
{

Zeile 1542Zeile 1561

// In some cases the thread we may be merging with may cause us to have a new firstpost if it is an older thread
// Therefore resync the visible field to make sure they're the same if they're not


// In some cases the thread we may be merging with may cause us to have a new firstpost if it is an older thread
// Therefore resync the visible field to make sure they're the same if they're not

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

		$query = $db->simple_select("posts", "pid, uid, visible", "tid='{$tid}'", array('order_by' => 'dateline, pid', '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 1560Zeile 1579
		if($new_firstpost['pid'] != $thread['firstpost'])
{
update_first_post($thread['tid']);

		if($new_firstpost['pid'] != $thread['firstpost'])
{
update_first_post($thread['tid']);

		}

// Subtract merged thread from user counter
if($mergethread['visible'] == 1 && $forum_cache[$mergethread['fid']]['usethreadcounts'] == 1)
{
if(!isset($user_posts[$mergethread['uid']]['threadnum']))
{
$user_posts[$mergethread['uid']]['threadnum'] = 0;
}
--$user_posts[$mergethread['uid']]['threadnum'];

 
		}

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

		}

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

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

				$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)


// If new thread is unapproved, implied counter comes in to effect
if($thread['visible'] == 0)

Zeile 1668Zeile 1677
				$updated_stats['deletedposts'] -= $mergethread['deletedposts'];
}
elseif($thread['visible'] == -1)

				$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'];

				$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)

			{

			{

				$new_stats['posts'] = $updated_stats['posts'];
}
elseif($updated_stats['posts'] > 0)

				$new_stats['posts'] = $updated_stats['posts'];
}
elseif($updated_stats['posts'] > 0)

Zeile 1687Zeile 1696
			if($updated_stats['unapprovedposts'] < 0)
{
$new_stats['unapprovedposts'] = $updated_stats['unapprovedposts'];

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

			}

			}

			elseif($updated_stats['unapprovedposts'] > 0)
{
$new_stats['unapprovedposts'] = "+{$updated_stats['unapprovedposts']}";

			elseif($updated_stats['unapprovedposts'] > 0)
{
$new_stats['unapprovedposts'] = "+{$updated_stats['unapprovedposts']}";

Zeile 1752Zeile 1761
			"replies" => "+{$mergethread['replies']}",
"attachmentcount" => "+{$mergethread['attachmentcount']}",
"unapprovedposts" => "+{$mergethread['unapprovedposts']}",

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

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

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

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

Zeile 1766Zeile 1774
	/**
* Split posts into a new/existing thread
*

	/**
* 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 1797Zeile 1805
		}

// Get the first split post

		}

// Get the first split post

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

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


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



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


Zeile 1811Zeile 1819
			'unapprovedposts' => 0,
'deletedposts' => 0
);

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

 

$user_counters = array();


if($destination_tid == 0)
{


if($destination_tid == 0)
{

Zeile 1842Zeile 1852
						'threadnum' => 0
);
}

						'threadnum' => 0
);
}

				// Subtract thread from old thread opener
--$user_counters[$newthread['uid']]['threadnum'];

				++$user_counters[$newthread['uid']]['threadnum'];


			}
elseif($visible == -1)
{

			}
elseif($visible == -1)
{

Zeile 1964Zeile 1973
			{
// 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, uid", "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, pid', 'limit' => 1));

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

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

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

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

Zeile 2151Zeile 2160
				if($tid == $newtid)
{
// Update the subject of the first post in the new thread

				if($tid == $newtid)
{
// Update the subject of the first post in the new thread

					$query = $db->simple_select("posts", "pid", "tid='$newtid'", array('order_by' => 'dateline', 'limit' => 1));

					$query = $db->simple_select("posts", "pid", "tid='$newtid'", array('order_by' => 'dateline, pid', 'limit' => 1));

					$newthread = $db->fetch_array($query);
$sqlarray = array(
"subject" => $newsubject,

					$newthread = $db->fetch_array($query);
$sqlarray = array(
"subject" => $newsubject,

Zeile 2167Zeile 2176
						FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
WHERE p.tid='{$tid}'

						FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
WHERE p.tid='{$tid}'

						ORDER BY p.dateline ASC

						ORDER BY p.dateline ASC, p.pid ASC

						LIMIT 1
");
$oldthread = $db->fetch_array($query);

						LIMIT 1
");
$oldthread = $db->fetch_array($query);

Zeile 2213Zeile 2222
	/**
* 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 2254Zeile 2265
				);
}


				);
}


			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 2290Zeile 2304
				");
while($posters = $db->fetch_array($query1))
{

				");
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)

					}

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

Zeile 2310Zeile 2327
				$total_deleted_posts += $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts']+1;

$forum_counters[$thread['fid']]['deletedposts'] += $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts']+1; // Implied deleted posts counter for deleted threads

				$total_deleted_posts += $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts']+1;

$forum_counters[$thread['fid']]['deletedposts'] += $thread['replies']+$thread['unapprovedposts']+$thread['deletedposts']+1; // Implied deleted posts counter for deleted threads





				$forum_counters[$thread['fid']]['deletedthreads']++;
++$total_deleted_threads;
}

				$forum_counters[$thread['fid']]['deletedthreads']++;
++$total_deleted_threads;
}

Zeile 2340Zeile 2357

// If any of the thread has a prefix and the destination forum doesn't accept that prefix, remove the prefix
$query = $db->simple_select("threads", "tid, prefix", "tid IN ($tid_list) AND prefix != 0");


// If any of the thread has a prefix and the destination forum doesn't accept that prefix, remove the prefix
$query = $db->simple_select("threads", "tid, prefix", "tid IN ($tid_list) AND prefix != 0");

		while($thread = $db->fetch_array($query))

		while($thread = $db->fetch_array($query))

		{
switch($db->type)
{

		{
switch($db->type)
{

Zeile 2414Zeile 2431
	/**
* 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 2506Zeile 2523
					$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))

			}
}

if(empty($pids) && empty($threads_to_update))

		{
return false;
}

		{
return false;
}

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

if(!empty($thread_counters))

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

if(!empty($thread_counters))

		{

		{

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

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

Zeile 2562Zeile 2579
	/**
* Unapprove multiple posts
*

	/**
* Unapprove multiple posts
*

	 * @param array PIDs
* @return boolean true

	 * @param array $pids PIDs
* @return boolean

	 */
function unapprove_posts($pids)

	 */
function unapprove_posts($pids)

	{

	{

		global $db, $cache, $plugins;

		global $db, $cache, $plugins;





		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 2594Zeile 2611
		// 3) We're doing both 1 and 2
$query = $db->query("
SELECT p.tid

		// 3) We're doing both 1 and 2
$query = $db->query("
SELECT p.tid

			FROM ".TABLE_PREFIX."posts p

			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 IN (-1,1) AND t.firstpost = p.pid AND t.visible IN (-1,1)
");

			LEFT JOIN ".TABLE_PREFIX."threads t ON (t.tid=p.tid)
WHERE p.pid IN ($pid_list) AND p.visible IN (-1,1) AND t.firstpost = p.pid AND t.visible IN (-1,1)
");

Zeile 2608Zeile 2625
		{
$this->unapprove_threads($threads_to_update);
}

		{
$this->unapprove_threads($threads_to_update);
}





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

$query = $db->query("

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

$query = $db->query("

Zeile 2622Zeile 2639
			$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,
'unapprovedposts' => 0,
'deletedposts' => 0

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

				);
}


				);
}


			++$thread_counters[$post['tid']]['unapprovedposts'];
if($post['visible'] == 1)
{
++$thread_counters[$post['tid']]['replies'];
}
else

			++$thread_counters[$post['tid']]['unapprovedposts'];
if($post['visible'] == 1)
{
++$thread_counters[$post['tid']]['replies'];
}
else

			{

			{

				++$thread_counters[$post['tid']]['deletedposts'];
}


				++$thread_counters[$post['tid']]['deletedposts'];
}


Zeile 2657Zeile 2674
				if($post['visible'] == 1)
{
++$forum_counters[$post['fid']]['num_posts'];

				if($post['visible'] == 1)
{
++$forum_counters[$post['fid']]['num_posts'];

				}

				}

				else
{
++$forum_counters[$post['fid']]['num_deleted_posts'];

				else
{
++$forum_counters[$post['fid']]['num_deleted_posts'];

				}
}

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

				}
}

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


// If post counts enabled in this forum and the thread is approved, subtract 1
if($forum['usepostcounts'] != 0 && $post['visible'] == 1 && $post['threadvisible'] == 1)


// If post counts enabled in this forum and the thread is approved, subtract 1
if($forum['usepostcounts'] != 0 && $post['visible'] == 1 && $post['threadvisible'] == 1)

Zeile 2678Zeile 2695
		}

if(empty($pids) && empty($threads_to_update))

		}

if(empty($pids) && empty($threads_to_update))

		{

		{

			return false;
}


			return false;
}


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

if(!empty($thread_counters))

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

if(!empty($thread_counters))

		{

		{

			foreach($thread_counters as $tid => $counters)
{
$counters_update = array(
"unapprovedposts" => "+".$counters['unapprovedposts'],
"replies" => "-".$counters['replies'],
"deletedposts" => "-".$counters['deletedposts']

			foreach($thread_counters as $tid => $counters)
{
$counters_update = array(
"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);

			}
}


			}
}


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

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

Zeile 2716Zeile 2733
				);
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)

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

Zeile 2732Zeile 2749

/**
* 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)
{
global $db, $mybb, $plugins;

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

	function change_thread_subject($tids, $format)
{
global $db, $mybb, $plugins;

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

		{

		{

			$tids = array($tids);
}


			$tids = array($tids);
}


Zeile 2758Zeile 2775
		$tid_list = implode(',', $tids);

// Get original subject

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

// Get original subject

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





		$query = $db->query("
SELECT u.uid, u.username, t.tid, t.subject FROM ".TABLE_PREFIX."threads t
LEFT JOIN ".TABLE_PREFIX."users u ON t.uid=u.uid
WHERE tid IN ($tid_list)
");

		while($thread = $db->fetch_array($query))
{
// Update threads and first posts with new subject

		while($thread = $db->fetch_array($query))
{
// Update threads and first posts with new subject

			$subject = str_replace('{username}', $mybb->user['username'], $format);
$subject = str_replace('{subject}', $thread['subject'], $subject);
$new_subject = array(
"subject" => $db->escape_string($subject)











			$find = array('{username}', 'author', '{subject}');
$replace = array($mybb->user['username'], $thread['username'], $thread['subject']);

$new_subject = str_ireplace($find, $replace, $format);

$args = array(
'thread' => &$thread,
'new_subject' => &$new_subject,
);

$plugins->run_hooks("class_moderation_change_thread_subject_newsubject", $args);

$update_subject = array(
"subject" => $db->escape_string($new_subject)

			);

			);

			$db->update_query("threads", $new_subject, "tid='{$thread['tid']}'");
$db->update_query("posts", $new_subject, "tid='{$thread['tid']}' AND replyto='0'");

			$db->update_query("threads", $update_subject, "tid='{$thread['tid']}'");
$db->update_query("posts", $update_subject, "tid='{$thread['tid']}' AND replyto='0'");

		}

$arguments = array("tids" => $tids, "format" => $format);

		}

$arguments = array("tids" => $tids, "format" => $format);

Zeile 2780Zeile 2811
	/**
* Add thread expiry
*

	/**
* 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)
{
global $db, $plugins;

	 */
function expire_thread($tid, $deletetime)
{
global $db, $plugins;





		$tid = (int)$tid;

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

		$tid = (int)$tid;

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





		$update_thread = array(
"deletetime" => (int)$deletetime
);
$db->update_query("threads", $update_thread, "tid='{$tid}'");

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

		$update_thread = array(
"deletetime" => (int)$deletetime
);
$db->update_query("threads", $update_thread, "tid='{$tid}'");

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

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

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


return true;
}


return true;
}

Zeile 2809Zeile 2840
	/**
* 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 2846Zeile 2877
	/**
* Toggle post visibility (deleted/restored)
*

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

	 * @param array Post IDs

	 * @param array $pids Post IDs

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

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

Zeile 2883Zeile 2914
	/**
* 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 2911Zeile 2942
		if(is_array($unapprove))
{
$this->unapprove_threads($unapprove, $fid);

		if(is_array($unapprove))
{
$this->unapprove_threads($unapprove, $fid);

		}

		}

		if(is_array($approve))
{
$this->approve_threads($approve, $fid);

		if(is_array($approve))
{
$this->approve_threads($approve, $fid);

Zeile 2922Zeile 2953
	/**
* Toggle thread visibility (deleted/restored)
*

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

	 * @param array Thread IDs

	 * @param array $tids Thread IDs

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

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

	{
global $db;

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

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

	{
global $db;

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

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

		$query = $db->simple_select("threads", 'tid, visible', "tid IN ($tid_list)");
while($thread = $db->fetch_array($query))
{

		$query = $db->simple_select("threads", 'tid, visible', "tid IN ($tid_list)");
while($thread = $db->fetch_array($query))
{

Zeile 2959Zeile 2990
	/**
* 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 2996Zeile 3027
	/**
* 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)

Zeile 3036Zeile 3067
	/**
* 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)
{
global $db, $plugins;

	 */
function remove_thread_subscriptions($tids, $all = true, $fid = 0)
{
global $db, $plugins;





		// Format thread IDs
if(!is_array($tids))

		// Format thread IDs
if(!is_array($tids))

		{

		{

			$tids = array($tids);

			$tids = array($tids);

		}


		}


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

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

Zeile 3059Zeile 3090
		// Make sure we only have valid values
$tids = array_map('intval', $tids);
$fid = (int)$fid;

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





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

// Delete only subscriptions from users who no longer have permission to read the thread.

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

// Delete only subscriptions from users who no longer have permission to read the thread.

		if(!$all)

		if(!$all)

		{
// Get groups that cannot view the forum or its threads
$forum_parentlist = get_parent_list($fid);
$query = $db->simple_select("forumpermissions", "gid", "fid IN ({$forum_parentlist}) AND (canview=0 OR canviewthreads=0)");
$groups = array();

		{
// Get groups that cannot view the forum or its threads
$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'];

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

Zeile 3114Zeile 3146
	/**
* 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)
{

Zeile 3149Zeile 3182
	/**
* 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)
{

	 */
function soft_delete_posts($pids)
{

Zeile 3272Zeile 3305
		{
$where = "pid IN (".implode(',', $pids).")";
$db->update_query("posts", $update, $where);

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

 
			mark_reports($pids, "posts");

		}

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

		}

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

Zeile 3319Zeile 3353
	/**
* 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 3331Zeile 3365
		if(empty($pids))
{
return false;

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

		}


		}


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

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

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

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





		// Make visible
$update = array(
"visible" => 1,

		// Make visible
$update = array(
"visible" => 1,

Zeile 3368Zeile 3402
		}

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

		}

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





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

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

Zeile 3379Zeile 3413
		while($post = $db->fetch_array($query))
{
$pids[] = $post['pid'];

		while($post = $db->fetch_array($query))
{
$pids[] = $post['pid'];





			if(!isset($thread_counters[$post['tid']]))
{
$thread_counters[$post['tid']] = array(
'replies' => 0
);

			if(!isset($thread_counters[$post['tid']]))
{
$thread_counters[$post['tid']] = array(
'replies' => 0
);

			}

			}


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



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


Zeile 3415Zeile 3449
		}

if(empty($pids) && empty($threads_to_update))

		}

if(empty($pids) && empty($threads_to_update))

		{
return false;

		{
return false;

		}

if(!empty($pids))

		}

if(!empty($pids))

Zeile 3467Zeile 3501
	/**
* 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 3489Zeile 3523

$tid_list = $forum_counters = $user_counters = $posts_to_restore = array();



$tid_list = $forum_counters = $user_counters = $posts_to_restore = array();


		foreach($tids as $tid)




		$tids_list = implode(",", $tids);
$query = $db->simple_select("threads", "*", "tid IN ($tids_list)");

while($thread = $db->fetch_array($query))

		{

		{

			$thread = get_thread($tid);
if(!$thread || $thread['visible'] != -1)

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


			{
continue;
}

			{
continue;
}

Zeile 3526Zeile 3562
			if($forum['usepostcounts'] != 0)
{
// On approving thread restore user post counts

			if($forum['usepostcounts'] != 0)
{
// On approving thread restore user post counts

				$query = $db->simple_select("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))

				$query2 = $db->simple_select("posts", "COUNT(pid) as posts, uid", "tid='{$thread['tid']}' AND (visible='1' OR pid='{$thread['firstpost']}') AND uid > 0 GROUP BY uid");
while($counter = $db->fetch_array($query2))

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

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

Zeile 3612Zeile 3648
	/**
* Soft delete one or more threads
*

	/**
* 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)
{

	 */
function soft_delete_threads($tids)
{

Zeile 3643Zeile 3679

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



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


		foreach($tids as $tid)




		$tids_list = implode(",", $tids);
$query = $db->simple_select("threads", "*", "tid IN ($tids_list)");

while($thread = $db->fetch_array($query))

		{

		{

			$thread = get_thread($tid);

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

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

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

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

Zeile 3689Zeile 3727
				// On unapproving thread update user post counts
if($thread['visible'] == 1 && $forum['usepostcounts'] != 0)
{

				// On unapproving thread update user post counts
if($thread['visible'] == 1 && $forum['usepostcounts'] != 0)
{

					$query = $db->simple_select("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))

					$query2 = $db->simple_select("posts", "COUNT(pid) AS posts, uid", "tid='{$thread['tid']}' AND (visible='1' OR pid='{$thread['firstpost']}') AND uid > 0 GROUP BY uid");
while($counter = $db->fetch_array($query2))

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

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

Zeile 3715Zeile 3753
		// 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;