Vergleich moderation.php - 1.2.3 - 1.2.10

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 3Zeile 3
 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * MyBB 1.2
* Copyright � 2006 MyBB Group, All Rights Reserved
*

 * Website: http://www.mybboard.com
* License: http://www.mybboard.com/eula.html

 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html

 *

 *

 * $Id: moderation.php 2475 2006-12-01 04:58:21Z Tikitiki $

 * $Id: moderation.php 3515 2007-11-24 09:05:33Z Tikitiki $

 */

define("IN_MYBB", 1);

 */

define("IN_MYBB", 1);

Zeile 81Zeile 81

if($fid)
{


if($fid)
{

	// Password protected forums ......... yhummmmy!
check_forum_password($fid, $forum['password']);

	// Check if this forum is password protected and we have a valid password
check_forum_password($forum['fid']);

}

if($mybb->user['uid'] != 0)

}

if($mybb->user['uid'] != 0)

Zeile 384Zeile 384
		}
else
{

		}
else
{

			update_thread_count($tid);

 
			$url = "showthread.php?tid=$tid";
mark_reports($tid, "thread");
}
$lang->deleted_selective_posts = sprintf($lang->deleted_selective_posts, $deletecount);
log_moderator_action($modlogdata, $lang->deleted_selective_posts);

			$url = "showthread.php?tid=$tid";
mark_reports($tid, "thread");
}
$lang->deleted_selective_posts = sprintf($lang->deleted_selective_posts, $deletecount);
log_moderator_action($modlogdata, $lang->deleted_selective_posts);

		update_forum_count($fid);

 
		redirect($url, $lang->redirect_postsdeleted);
break;


		redirect($url, $lang->redirect_postsdeleted);
break;


Zeile 518Zeile 516
		$the_thread = $tid;

$newtid = $moderation->move_thread($tid, $moveto, $method, $expire);

		$the_thread = $tid;

$newtid = $moderation->move_thread($tid, $moveto, $method, $expire);

 

$plugins->run_hooks("moderation_do_move");


switch($method)
{


switch($method)
{

Zeile 618Zeile 618

// Admin options
$adminoptions = "";


// Admin options
$adminoptions = "";

		if($mybb->usergroup['cancp'] == "yes")

		if($mybb->usergroup['cancp'] == "yes" && $mybb->config['hide_admin_links'] != 1)

		{
eval("\$adminoptions = \"".$templates->get("moderation_getip_adminoptions")."\";");
}

		{
eval("\$adminoptions = \"".$templates->get("moderation_getip_adminoptions")."\";");
}

Zeile 653Zeile 653
		// get thread to merge's tid
$splitloc = explode(".php", $mybb->input['threadurl']);
$temp = explode("&", my_substr($splitloc[1], 1));

		// get thread to merge's tid
$splitloc = explode(".php", $mybb->input['threadurl']);
$temp = explode("&", my_substr($splitloc[1], 1));

		for($i = 0; $i < count($temp); $i++)

		if(!empty($temp))

		{

		{

			$temp2 = explode("=", $temp[$i], 2);









			for($i = 0; $i < count($temp); $i++)
{
$temp2 = explode("=", $temp[$i], 2);
$parameters[$temp2[0]] = $temp2[1];
}
}
else
{
$temp2 = explode("=", $splitloc[1], 2);

			$parameters[$temp2[0]] = $temp2[1];

			$parameters[$temp2[0]] = $temp2[1];

		}


		}


		if($parameters['pid'] && !$parameters['tid'])
{
$query = $db->simple_select(TABLE_PREFIX."posts", "*", "pid='".intval($parameters['pid'])."'");
$post = $db->fetch_array($query);
$mergetid = $post['tid'];

		if($parameters['pid'] && !$parameters['tid'])
{
$query = $db->simple_select(TABLE_PREFIX."posts", "*", "pid='".intval($parameters['pid'])."'");
$post = $db->fetch_array($query);
$mergetid = $post['tid'];

		}

		}

		elseif($parameters['tid'])
{
$mergetid = $parameters['tid'];

		elseif($parameters['tid'])
{
$mergetid = $parameters['tid'];

Zeile 690Zeile 699
		else
{
$subject = $thread['subject'];

		else
{
$subject = $thread['subject'];

		}


		}


		$moderation->merge_threads($mergetid, $tid, $subject);

log_moderator_action($modlogdata, $lang->thread_merged);

		$moderation->merge_threads($mergetid, $tid, $subject);

log_moderator_action($modlogdata, $lang->thread_merged);





		redirect("showthread.php?tid=$tid", $lang->redirect_threadsmerged);
break;

// Divorce the posts in this thread (Split!)
case "split":
add_breadcrumb($lang->nav_split);

		redirect("showthread.php?tid=$tid", $lang->redirect_threadsmerged);
break;

// Divorce the posts in this thread (Split!)
case "split":
add_breadcrumb($lang->nav_split);

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}

		$query = $db->query("
SELECT p.*, u.*
FROM ".TABLE_PREFIX."posts p

		$query = $db->query("
SELECT p.*, u.*
FROM ".TABLE_PREFIX."posts p

Zeile 747Zeile 756
		eval("\$split = \"".$templates->get("moderation_split")."\";");
output_page($split);
break;

		eval("\$split = \"".$templates->get("moderation_split")."\";");
output_page($split);
break;





	// Lets break them up buddy! (Do the split)
case "do_split":
if(is_moderator($fid, "canmanagethreads") != "yes")

	// Lets break them up buddy! (Do the split)
case "do_split":
if(is_moderator($fid, "canmanagethreads") != "yes")

		{

		{

			error_no_permission();

			error_no_permission();

		}

$plugins->run_hooks("moderation_do_split");


		}




		if(!is_array($mybb->input['splitpost']))

		if(!is_array($mybb->input['splitpost']))

		{

		{

			error($lang->error_nosplitposts);
}
$query = $db->simple_select(TABLE_PREFIX."posts", "COUNT(*) AS totalposts", "tid='".intval($mybb->input['tid'])."'");
$count = $db->fetch_array($query);

			error($lang->error_nosplitposts);
}
$query = $db->simple_select(TABLE_PREFIX."posts", "COUNT(*) AS totalposts", "tid='".intval($mybb->input['tid'])."'");
$count = $db->fetch_array($query);


if($count['totalposts'] == count($mybb->input['splitpost']))
{
error($lang->error_cantsplitall);
}
if($mybb->input['moveto'])


if($count['totalposts'] == count($mybb->input['splitpost']))
{
error($lang->error_cantsplitall);
}
if($mybb->input['moveto'])

		{
$moveto = intval($mybb->input['moveto']);

		{
$moveto = intval($mybb->input['moveto']);

		}

		}

		else
{
$moveto = $fid;

		else
{
$moveto = $fid;

Zeile 781Zeile 788
		{
error($lang->error_invalidforum);
}

		{
error($lang->error_invalidforum);
}

 

$plugins->run_hooks("moderation_do_split");


// move the selected posts over
$query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='$tid'");


// move the selected posts over
$query = $db->simple_select(TABLE_PREFIX."posts", "pid", "tid='$tid'");

Zeile 798Zeile 807
		log_moderator_action($modlogdata, $lang->thread_split);

redirect("showthread.php?tid=$newtid", $lang->redirect_threadsplit);

		log_moderator_action($modlogdata, $lang->thread_split);

redirect("showthread.php?tid=$newtid", $lang->redirect_threadsplit);

		break;

		break;


// Delete Threads - Inline moderation
case "multideletethreads":


// Delete Threads - Inline moderation
case "multideletethreads":

Zeile 814Zeile 823
		}
$inlineids = implode("|", $threads);
clearinline($fid, "forum");

		}
$inlineids = implode("|", $threads);
clearinline($fid, "forum");

 
		$plugins->run_hooks("moderation_multideletethreads");

		eval("\$multidelete = \"".$templates->get("moderation_inline_deletethreads")."\";");
output_page($multidelete);
break;

		eval("\$multidelete = \"".$templates->get("moderation_inline_deletethreads")."\";");
output_page($multidelete);
break;

Zeile 831Zeile 841
			$moderation->delete_thread($tid);
$tlist[] = $tid;
}

			$moderation->delete_thread($tid);
$tlist[] = $tid;
}

 
		$plugins->run_hooks("moderation_do_multideletethreads");

		log_moderator_action($modlogdata, $lang->multi_deleted_threads);
clearinline($fid, "forum");
mark_reports($tlist, "threads");

		log_moderator_action($modlogdata, $lang->multi_deleted_threads);
clearinline($fid, "forum");
mark_reports($tlist, "threads");

Zeile 841Zeile 852
	case "multiopenthreads":
if(is_moderator($fid, "canopenclosethreads") != "yes")
{

	case "multiopenthreads":
if(is_moderator($fid, "canopenclosethreads") != "yes")
{

			error_no_permission();
}
$threads = getids($fid, "forum");
if(count($threads) < 1)
{

			error_no_permission();
}
$threads = getids($fid, "forum");
if(count($threads) < 1)
{

			error($lang->error_inline_nothreadsselected);
}


			error($lang->error_inline_nothreadsselected);
}


Zeile 858Zeile 869

// Close threads - Inline moderation
case "multiclosethreads":


// Close threads - Inline moderation
case "multiclosethreads":

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		}
$threads = getids($fid, "forum");
if(count($threads) < 1)

		}
$threads = getids($fid, "forum");
if(count($threads) < 1)

Zeile 869Zeile 880
		}

$moderation->close_threads($threads);

		}

$moderation->close_threads($threads);



		$plugins->run_hooks("moderation_multiclosethreads");

		log_moderator_action($modlogdata, $lang->multi_closed_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsclosed);

		log_moderator_action($modlogdata, $lang->multi_closed_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsclosed);

Zeile 888Zeile 899
		}

$moderation->approve_threads($threads, $fid);

		}

$moderation->approve_threads($threads, $fid);



		$plugins->run_hooks("moderation_multiapprovethreads");

		log_moderator_action($modlogdata, $lang->multi_approved_threads);

		log_moderator_action($modlogdata, $lang->multi_approved_threads);

		clearinline($fid, "forum");

		clearinline($fid, "forum");

		$cache->updatestats();
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsapproved);
break;

// Unapprove threads - Inline moderation
case "multiunapprovethreads":

		$cache->updatestats();
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsapproved);
break;

// Unapprove threads - Inline moderation
case "multiunapprovethreads":

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}
$threads = getids($fid, "forum");
if(count($threads) < 1)
{
error($lang->error_inline_nothreadsselected);
}

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}
$threads = getids($fid, "forum");
if(count($threads) < 1)
{
error($lang->error_inline_nothreadsselected);
}


$moderation->unapprove_threads($threads, $fid);


$moderation->unapprove_threads($threads, $fid);



		$plugins->run_hooks("moderation_multiunapprovethreads");

		log_moderator_action($modlogdata, $lang->multi_unapproved_threads);
clearinline($fid, "forum");
$cache->updatestats();

		log_moderator_action($modlogdata, $lang->multi_unapproved_threads);
clearinline($fid, "forum");
$cache->updatestats();

Zeile 917Zeile 928

// Stick threads - Inline moderation
case "multistickthreads":


// Stick threads - Inline moderation
case "multistickthreads":

		if(is_moderator($fid, "canopenclosethreads") != "yes")
{
error_no_permission();

		if(is_moderator($fid, "canopenclosethreads") != "yes")
{
error_no_permission();

		}
$threads = getids($fid, "forum");
if(count($threads) < 1)

		}
$threads = getids($fid, "forum");
if(count($threads) < 1)

Zeile 928Zeile 939
		}

$moderation->stick_threads($threads);

		}

$moderation->stick_threads($threads);



		$plugins->run_hooks("moderation_multistickthreads");

		log_moderator_action($modlogdata, $lang->multi_stuck_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsstuck);

		log_moderator_action($modlogdata, $lang->multi_stuck_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsstuck);

Zeile 947Zeile 958
		}

$moderation->unstick_threads($threads);

		}

$moderation->unstick_threads($threads);



		$plugins->run_hooks("moderation_multiunstickthreads");

		log_moderator_action($modlogdata, $lang->multi_unstuck_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsunstuck);

		log_moderator_action($modlogdata, $lang->multi_unstuck_threads);
clearinline($fid, "forum");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_inline_threadsunstuck);

Zeile 969Zeile 980
			error_no_permission();
}
$forumselect = build_forum_jump("", '', 1, '', 0, '', "moveto");

			error_no_permission();
}
$forumselect = build_forum_jump("", '', 1, '', 0, '', "moveto");

 

$plugins->run_hooks("moderation_multimovethreads");


		eval("\$movethread = \"".$templates->get("moderation_inline_movethreads")."\";");
output_page($movethread);
break;

		eval("\$movethread = \"".$templates->get("moderation_inline_movethreads")."\";");
output_page($movethread);
break;

Zeile 976Zeile 990
	// Actually move the threads in Inline moderation
case "do_multimovethreads":
if(is_moderator($fid, "canmanagethreads") != "yes")

	// Actually move the threads in Inline moderation
case "do_multimovethreads":
if(is_moderator($fid, "canmanagethreads") != "yes")

		{
error_no_permission();

		{
error_no_permission();

		}
$moveto = intval($mybb->input['moveto']);
$threadlist = explode("|", $mybb->input['threads']);
foreach($threadlist as $tid)
{
$tids[] = $tid;

		}
$moveto = intval($mybb->input['moveto']);
$threadlist = explode("|", $mybb->input['threads']);
foreach($threadlist as $tid)
{
$tids[] = $tid;

		}

		}

		if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{
error_no_permission();
}
$newperms = forum_permissions($moveto);
if($newperms['canview'] == "no" && is_moderator($fid, "canmovetononmodforum") != "yes")

		if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{
error_no_permission();
}
$newperms = forum_permissions($moveto);
if($newperms['canview'] == "no" && is_moderator($fid, "canmovetononmodforum") != "yes")

		{

		{

			error_no_permission();

			error_no_permission();

		}

		}

		$query = $db->simple_select(TABLE_PREFIX."forums", "*", "fid='$moveto'");
$newforum = $db->fetch_array($query);
if($newforum['type'] != "f")

		$query = $db->simple_select(TABLE_PREFIX."forums", "*", "fid='$moveto'");
$newforum = $db->fetch_array($query);
if($newforum['type'] != "f")

		{

		{

			error($lang->error_invalidforum);
}
if($thread['fid'] == $moveto)
{
error($lang->error_movetosameforum);
}

			error($lang->error_invalidforum);
}
if($thread['fid'] == $moveto)
{
error($lang->error_movetosameforum);
}





		$moderation->move_threads($tids, $moveto);

		$moderation->move_threads($tids, $moveto);

 

$plugins->run_hooks("moderation_do_multimovethreads");


log_moderator_action($modlogdata, $lang->multi_moved_threads);



log_moderator_action($modlogdata, $lang->multi_moved_threads);


Zeile 1027Zeile 1043
		$inlineids = implode("|", $posts);
//clearinline($pid, "post");
clearinline($tid, "thread");

		$inlineids = implode("|", $posts);
//clearinline($pid, "post");
clearinline($tid, "thread");



		$plugins->run_hooks("moderation_multideleteposts");

		eval("\$multidelete = \"".$templates->get("moderation_inline_deleteposts")."\";");
output_page($multidelete);
break;

// Actually delete the posts in inline moderation
case "do_multideleteposts":

		eval("\$multidelete = \"".$templates->get("moderation_inline_deleteposts")."\";");
output_page($multidelete);
break;

// Actually delete the posts in inline moderation
case "do_multideleteposts":

		if(is_moderator($fid, "candeleteposts") != "yes")
{
error_no_permission();

		if(is_moderator($fid, "candeleteposts") != "yes")
{
error_no_permission();

		}
$postlist = explode("|", $mybb->input['posts']);
$deletecount = 0;

		}
$postlist = explode("|", $mybb->input['posts']);
$deletecount = 0;

Zeile 1057Zeile 1073
		}
else
{

		}
else
{

			update_thread_count($tid);

 
			mark_reports($plist, "posts");
$url = "showthread.php?tid=$tid";
}

			mark_reports($plist, "posts");
$url = "showthread.php?tid=$tid";
}

 
		$plugins->run_hooks("moderation_do_multideleteposts");

		$lang->deleted_selective_posts = sprintf($lang->deleted_selective_posts, $deletecount);
log_moderator_action($modlogdata, $lang->deleted_selective_posts);

		$lang->deleted_selective_posts = sprintf($lang->deleted_selective_posts, $deletecount);
log_moderator_action($modlogdata, $lang->deleted_selective_posts);

		update_forum_count($fid);

 
		redirect($url, $lang->redirect_postsdeleted);
break;


		redirect($url, $lang->redirect_postsdeleted);
break;


Zeile 1071Zeile 1086
	case "multimergeposts":
add_breadcrumb($lang->nav_multi_mergeposts);
if(is_moderator($fid, "candeleteposts") != "yes")

	case "multimergeposts":
add_breadcrumb($lang->nav_multi_mergeposts);
if(is_moderator($fid, "candeleteposts") != "yes")

		{
error_no_permission();
}

		{
error_no_permission();
}

		$posts = getids($tid, "thread");
if(count($posts) < 1)
{

		$posts = getids($tid, "thread");
if(count($posts) < 1)
{

Zeile 1081Zeile 1096
		}
$inlineids = implode("|", $posts);
clearinline($tid, "thread");

		}
$inlineids = implode("|", $posts);
clearinline($tid, "thread");



		$plugins->run_hooks("moderation_multimergeposts");

		eval("\$multimerge = \"".$templates->get("moderation_inline_mergeposts")."\";");
output_page($multimerge);
break;

		eval("\$multimerge = \"".$templates->get("moderation_inline_mergeposts")."\";");
output_page($multimerge);
break;

Zeile 1091Zeile 1106
		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		}

		}

		$postlist = explode("|", $mybb->input['posts']);
foreach($postlist as $pid)
{
$pid = intval($pid);
$plist[] = $pid;
}

		$postlist = explode("|", $mybb->input['posts']);
foreach($postlist as $pid)
{
$pid = intval($pid);
$plist[] = $pid;
}





		$moderation->merge_posts($plist, $tid, $mybb->input['sep']);

		$moderation->merge_posts($plist, $tid, $mybb->input['sep']);



		$plugins->run_hooks("moderation_do_multimergeposts");

		mark_reports($plist, "posts");
log_moderator_action($modlogdata, $lang->merged_selective_posts);
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsmerged);

		mark_reports($plist, "posts");
log_moderator_action($modlogdata, $lang->merged_selective_posts);
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsmerged);

Zeile 1146Zeile 1161
		}
$inlineids = implode("|", $posts);
clearinline($tid, "thread");

		}
$inlineids = implode("|", $posts);
clearinline($tid, "thread");

 
		$plugins->run_hooks("moderation_multisplitposts");

		$forumselect = build_forum_jump("", $fid, 1, '', 0, '', "moveto");
eval("\$splitposts = \"".$templates->get("moderation_inline_splitposts")."\";");
output_page($splitposts);

		$forumselect = build_forum_jump("", $fid, 1, '', 0, '', "moveto");
eval("\$splitposts = \"".$templates->get("moderation_inline_splitposts")."\";");
output_page($splitposts);

Zeile 1179Zeile 1195
		$newsubject = $mybb->input['newsubject'];

$newtid = $moderation->split_posts($plist, $tid, $moveto, $newsubject);

		$newsubject = $mybb->input['newsubject'];

$newtid = $moderation->split_posts($plist, $tid, $moveto, $newsubject);

 

$plugins->run_hooks("moderation_do_multisplitposts");


$pid_list = implode(', ', $plist);
$lang->split_selective_posts = sprintf($lang->split_selective_posts, $pid_list, $newtid);


$pid_list = implode(', ', $plist);
$lang->split_selective_posts = sprintf($lang->split_selective_posts, $pid_list, $newtid);

Zeile 1189Zeile 1207

// Approve posts - Inline moderation
case "multiapproveposts":


// Approve posts - Inline moderation
case "multiapproveposts":

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}
$posts = getids($tid, "thread");
if(count($posts) < 1)
{
error($lang->error_inline_nopostsselected);
}

$pids = array();
foreach($posts as $pid)
{
$pids[] = intval($pid);

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();
}
$posts = getids($tid, "thread");
if(count($posts) < 1)
{
error($lang->error_inline_nopostsselected);
}

$pids = array();
foreach($posts as $pid)
{
$pids[] = intval($pid);

		}


		}


		$moderation->approve_posts($pids, $tid, $fid);


		$moderation->approve_posts($pids);
$plugins->run_hooks("moderation_do_multiapproveposts");

		log_moderator_action($modlogdata, $lang->multi_approve_posts);
clearinline($tid, "thread");
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsapproved);

		log_moderator_action($modlogdata, $lang->multi_approve_posts);
clearinline($tid, "thread");
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsapproved);

		break;

		break;


// Unapprove posts - Inline moderation
case "multiunapproveposts":


// Unapprove posts - Inline moderation
case "multiunapproveposts":

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		if(is_moderator($fid, "canmanagethreads") != "yes")
{
error_no_permission();

		}
$posts = getids($tid, "thread");
if(count($posts) < 1)
{
error($lang->error_inline_nopostsselected);

		}
$posts = getids($tid, "thread");
if(count($posts) < 1)
{
error($lang->error_inline_nopostsselected);

		}

		}

		$pids = array();
foreach($posts as $pid)
{
$pids[] = intval($pid);
}


		$pids = array();
foreach($posts as $pid)
{
$pids[] = intval($pid);
}


		$moderation->unapprove_posts($pids, $tid, $fid);


		$moderation->unapprove_posts($pids);
$plugins->run_hooks("moderation_do_multiunapproveposts");

		log_moderator_action($modlogdata, $lang->multi_unapprove_posts);
clearinline($tid, "thread");
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsunapproved);

		log_moderator_action($modlogdata, $lang->multi_unapprove_posts);
clearinline($tid, "thread");
redirect("showthread.php?tid=$tid", $lang->redirect_inline_postsunapproved);

Zeile 1253Zeile 1271
		}
if($flist)
{

		}
if($flist)
{

			$flist = "AND fid IN (0$flist)";

			$flist = " AND fid IN (0$flist)";

		}
if(!is_array($mybb->input['reports']))
{

		}
if(!is_array($mybb->input['reports']))
{

Zeile 1270Zeile 1288

$sqlarray = array(
"reportstatus" => 1,


$sqlarray = array(
"reportstatus" => 1,

			);
$db->update_query(TABLE_PREFIX."reportedposts", $sqlarray, "rid IN ($rids)");

		);
$db->update_query(TABLE_PREFIX."reportedposts", $sqlarray, "rid IN ($rids){$flist}");

		$cache->updatereportedposts();
redirect("moderation.php?action=reports", $lang->redirect_reportsmarked);
break;

		$cache->updatereportedposts();
redirect("moderation.php?action=reports", $lang->redirect_reportsmarked);
break;

Zeile 1480Zeile 1498
		$tool = $custommod->tool_info(intval($mybb->input['action']));
if($tool !== false)
{

		$tool = $custommod->tool_info(intval($mybb->input['action']));
if($tool !== false)
{

 
			$plugins->run_hooks("moderation_custommod");

			if($tool['type'] == 't' && $mybb->input['modtype'] == 'inlinethread')
{
$tids = getids($fid, "forum");

			if($tool['type'] == 't' && $mybb->input['modtype'] == 'inlinethread')
{
$tids = getids($fid, "forum");

 
				if(count($tids) < 1)
{
error($lang->error_inline_nothreadsselected);
}

				$custommod->execute(intval($mybb->input['action']), $tids);
$lang->custom_tool = sprintf($lang->custom_tool, $tool['name']);
log_moderator_action($modlogdata, $lang->custom_tool);
clearinline($fid, "forum");
$lang->redirect_customtool_forum = sprintf($lang->redirect_customtool_forum, $tool['name']);
redirect("forumdisplay.php?fid=$fid", $lang->redirect_customtool_forum);

				$custommod->execute(intval($mybb->input['action']), $tids);
$lang->custom_tool = sprintf($lang->custom_tool, $tool['name']);
log_moderator_action($modlogdata, $lang->custom_tool);
clearinline($fid, "forum");
$lang->redirect_customtool_forum = sprintf($lang->redirect_customtool_forum, $tool['name']);
redirect("forumdisplay.php?fid=$fid", $lang->redirect_customtool_forum);

				break;

				break;

			}
elseif($tool['type'] == 't' && $mybb->input['modtype'] == 'thread')
{

			}
elseif($tool['type'] == 't' && $mybb->input['modtype'] == 'thread')
{

Zeile 1500Zeile 1523
				{
$lang->redirect_customtool_forum = sprintf($lang->redirect_customtool_forum, $tool['name']);
redirect("forumdisplay.php?fid=$fid", $lang->redirect_customtool_forum);

				{
$lang->redirect_customtool_forum = sprintf($lang->redirect_customtool_forum, $tool['name']);
redirect("forumdisplay.php?fid=$fid", $lang->redirect_customtool_forum);

				}

				}

				else
{
$lang->redirect_customtool_thread = sprintf($lang->redirect_customtool_thread, $tool['name']);

				else
{
$lang->redirect_customtool_thread = sprintf($lang->redirect_customtool_thread, $tool['name']);

Zeile 1511Zeile 1534
			elseif($tool['type'] == 'p' && $mybb->input['modtype'] == 'inlinepost')
{
$pids = getids($tid, "thread");

			elseif($tool['type'] == 'p' && $mybb->input['modtype'] == 'inlinepost')
{
$pids = getids($tid, "thread");

 
				if(count($pids) < 1)
{
error($lang->error_inline_nopostsselected);
}

				$ret = $custommod->execute(intval($mybb->input['action']), $tid, $pids);
$lang->custom_tool = sprintf($lang->custom_tool, $tool['name']);
log_moderator_action($modlogdata, $lang->custom_tool);

				$ret = $custommod->execute(intval($mybb->input['action']), $tid, $pids);
$lang->custom_tool = sprintf($lang->custom_tool, $tool['name']);
log_moderator_action($modlogdata, $lang->custom_tool);