Vergleich moderation.php - 1.2.10 - 1.2.14

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 6Zeile 6
 * Website: http://www.mybboard.net
* License: http://www.mybboard.net/eula.html
*

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

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

 * $Id: moderation.php 3641 2008-02-09 16:51:41Z Tikitiki $

 */

define("IN_MYBB", 1);

 */

define("IN_MYBB", 1);

Zeile 99Zeile 99
{
// Open or close a thread
case "openclosethread":

{
// Open or close a thread
case "openclosethread":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

		{

		{

			error_no_permission();

			error_no_permission();

		}

$plugins->run_hooks("moderation_openclosethread");


		}

$plugins->run_hooks("moderation_openclosethread");


		if($thread['closed'] == "yes")

		if($thread['closed'] == "yes")

		{

		{

			$openclose = $lang->opened;
$redirect = $lang->redirect_openthread;
$moderation->open_threads($tid);

			$openclose = $lang->opened;
$redirect = $lang->redirect_openthread;
$moderation->open_threads($tid);

Zeile 117Zeile 120
			$openclose = $lang->closed;
$redirect = $lang->redirect_closethread;
$moderation->close_threads($tid);

			$openclose = $lang->closed;
$redirect = $lang->redirect_closethread;
$moderation->close_threads($tid);

		}

$lang->mod_process = sprintf($lang->mod_process, $openclose);


		}

$lang->mod_process = sprintf($lang->mod_process, $openclose);


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

redirect("showthread.php?tid=$tid", $redirect);

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

redirect("showthread.php?tid=$tid", $redirect);

Zeile 128Zeile 131

// Stick or unstick that post to the top bab!
case "stick";


// Stick or unstick that post to the top bab!
case "stick";

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

		{

		{

			error_no_permission();

			error_no_permission();

		}

		}


$plugins->run_hooks("moderation_stick");



$plugins->run_hooks("moderation_stick");


Zeile 142Zeile 148
			$moderation->unstick_threads($tid);
}
else

			$moderation->unstick_threads($tid);
}
else

		{

		{

			$stuckunstuck = $lang->stuck;
$redirect = $lang->redirect_stickthread;
$moderation->stick_threads($tid);

			$stuckunstuck = $lang->stuck;
$redirect = $lang->redirect_stickthread;
$moderation->stick_threads($tid);

Zeile 150Zeile 156

$lang->mod_process = sprintf($lang->mod_process, $stuckunstuck);



$lang->mod_process = sprintf($lang->mod_process, $stuckunstuck);


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


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


		redirect("showthread.php?tid=$tid", $redirect);
break;

// Remove redirects to a specific thread
case "removeredirects":

		redirect("showthread.php?tid=$tid", $redirect);
break;

// Remove redirects to a specific thread
case "removeredirects":

 
	
// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 192Zeile 202

// Delete the actual thread here
case "do_deletethread":


// Delete the actual thread here
case "do_deletethread":

 
	
// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


		if(is_moderator($fid, "candeleteposts") != "yes")
{
if($permissions['candeletethreads'] != "yes" || $mybb->user['uid'] != $thread['uid'])

		if(is_moderator($fid, "candeleteposts") != "yes")
{
if($permissions['candeletethreads'] != "yes" || $mybb->user['uid'] != $thread['uid'])

Zeile 208Zeile 222
		$thread['subject'] = $db->escape_string($thread['subject']);
$lang->thread_deleted = sprintf($lang->thread_deleted, $thread['subject']);
log_moderator_action($modlogdata, $lang->thread_deleted);

		$thread['subject'] = $db->escape_string($thread['subject']);
$lang->thread_deleted = sprintf($lang->thread_deleted, $thread['subject']);
log_moderator_action($modlogdata, $lang->thread_deleted);





		$moderation->delete_thread($tid);

		$moderation->delete_thread($tid);





		mark_reports($tid, "thread");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);
break;

		mark_reports($tid, "thread");
redirect("forumdisplay.php?fid=$fid", $lang->redirect_threaddeleted);
break;





	// Delete the poll from a thread confirmation page
case "deletepoll":
add_breadcrumb($lang->nav_deletepoll);

	// Delete the poll from a thread confirmation page
case "deletepoll":
add_breadcrumb($lang->nav_deletepoll);


if(is_moderator($fid, "candeleteposts") != "yes")
{
if($permissions['candeletethreads'] != "yes" || $mybb->user['uid'] != $thread['uid'])
{
error_no_permission();
}
}

$plugins->run_hooks("moderation_deletepoll");

$query = $db->simple_select(TABLE_PREFIX."polls", "*", "tid='$tid'");
$poll = $db->fetch_array($query);


if(is_moderator($fid, "candeleteposts") != "yes")
{
if($permissions['candeletethreads'] != "yes" || $mybb->user['uid'] != $thread['uid'])
{
error_no_permission();
}
}

$plugins->run_hooks("moderation_deletepoll");

$query = $db->simple_select(TABLE_PREFIX."polls", "*", "tid='$tid'");
$poll = $db->fetch_array($query);

		if(!$poll['pid'])
{
error($lang->error_invalidpoll);

		if(!$poll['pid'])
{
error($lang->error_invalidpoll);

Zeile 242Zeile 256

// Delete the actual poll here!
case "do_deletepoll":


// Delete the actual poll here!
case "do_deletepoll":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


		if(!$mybb->input['delete'])
{
error($lang->redirect_pollnotdeleted);

		if(!$mybb->input['delete'])
{
error($lang->redirect_pollnotdeleted);

Zeile 252Zeile 269
			{
error_no_permission();
}

			{
error_no_permission();
}

		}

		}

		$query = $db->simple_select(TABLE_PREFIX."polls", "*", "tid='$tid'");
$poll = $db->fetch_array($query);
if(!$poll['pid'])

		$query = $db->simple_select(TABLE_PREFIX."polls", "*", "tid='$tid'");
$poll = $db->fetch_array($query);
if(!$poll['pid'])

		{

		{

			error($lang->error_invalidpoll);
}

			error($lang->error_invalidpoll);
}





		$plugins->run_hooks("moderation_do_deletepoll");

		$plugins->run_hooks("moderation_do_deletepoll");





		$lang->poll_deleted = sprintf($lang->poll_deleted, $thread['subject']);
log_moderator_action($modlogdata, $lang->poll_deleted);

		$lang->poll_deleted = sprintf($lang->poll_deleted, $thread['subject']);
log_moderator_action($modlogdata, $lang->poll_deleted);





		$moderation->delete_poll($poll['pid']);

		$moderation->delete_poll($poll['pid']);





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

// Approve a thread
case "approvethread":

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

// Approve a thread
case "approvethread":

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




		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);

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

			error_no_permission();
}
$query = $db->simple_select(TABLE_PREFIX."threads", "*", "tid='$tid'");
$thread = $db->fetch_array($query);


			error_no_permission();
}
$query = $db->simple_select(TABLE_PREFIX."threads", "*", "tid='$tid'");
$thread = $db->fetch_array($query);


		$plugins->run_hooks("moderation_approvethread");


		$plugins->run_hooks("moderation_approvethread");


		$lang->thread_approved = sprintf($lang->thread_approved, $thread['subject']);
log_moderator_action($modlogdata, $lang->thread_approved);


		$lang->thread_approved = sprintf($lang->thread_approved, $thread['subject']);
log_moderator_action($modlogdata, $lang->thread_approved);


Zeile 291Zeile 311

// Unapprove a thread
case "unapprovethread":


// Unapprove a thread
case "unapprovethread":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 311Zeile 334
	// Delete selective posts in a thread
case "deleteposts":
add_breadcrumb($lang->nav_deleteposts);

	// Delete selective posts in a thread
case "deleteposts":
add_breadcrumb($lang->nav_deleteposts);

		if(is_moderator($fid, "candeleteposts") != "yes")
{
error_no_permission();
}
$posts = "";
$query = $db->query("
SELECT p.*, u.*

		if(is_moderator($fid, "candeleteposts") != "yes")
{
error_no_permission();
}
$posts = "";
$query = $db->query("
SELECT p.*, u.*

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (p.uid=u.uid)
WHERE tid='$tid'

			FROM ".TABLE_PREFIX."posts p
LEFT JOIN ".TABLE_PREFIX."users u ON (p.uid=u.uid)
WHERE tid='$tid'

			ORDER BY dateline ASC
");
$altbg = "trow1";
while($post = $db->fetch_array($query))
{
$postdate = my_date($mybb->settings['dateformat'], $post['dateline']);
$posttime = my_date($mybb->settings['timeformat'], $post['dateline']);

$parser_options = array(
"allow_html" => $forum['allowhtml'],
"allow_mycode" => $forum['allowmycode'],
"allow_smilies" => $forum['allowsmilies'],
"allow_imgcode" => $forum['allowimgcode']
);
if($post['smilieoff'] == "yes")
{
$parser_options['allow_smilies'] = "no";
}


			ORDER BY dateline ASC
");
$altbg = "trow1";
while($post = $db->fetch_array($query))
{
$postdate = my_date($mybb->settings['dateformat'], $post['dateline']);
$posttime = my_date($mybb->settings['timeformat'], $post['dateline']);

$parser_options = array(
"allow_html" => $forum['allowhtml'],
"allow_mycode" => $forum['allowmycode'],
"allow_smilies" => $forum['allowsmilies'],
"allow_imgcode" => $forum['allowimgcode']
);
if($post['smilieoff'] == "yes")
{
$parser_options['allow_smilies'] = "no";
}


			$message = $parser->parse_message($post['message'], $parser_options);
eval("\$posts .= \"".$templates->get("moderation_deleteposts_post")."\";");
$altbg = alt_trow();
}


			$message = $parser->parse_message($post['message'], $parser_options);
eval("\$posts .= \"".$templates->get("moderation_deleteposts_post")."\";");
$altbg = alt_trow();
}


		$plugins->run_hooks("moderation_deleteposts");


		$plugins->run_hooks("moderation_deleteposts");


		eval("\$deleteposts = \"".$templates->get("moderation_deleteposts")."\";");
output_page($deleteposts);
break;

// Lets delete those selected posts!
case "do_deleteposts":

		eval("\$deleteposts = \"".$templates->get("moderation_deleteposts")."\";");
output_page($deleteposts);
break;

// Lets delete those selected posts!
case "do_deleteposts":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 380Zeile 406
		{
$moderation->delete_thread($tid);
$url = "forumdisplay.php?fid=$fid";

		{
$moderation->delete_thread($tid);
$url = "forumdisplay.php?fid=$fid";

			mark_reports($plist, "posts");
}
else
{

			mark_reports($plist, "posts");
}
else
{

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

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

Zeile 427Zeile 453
			$message = $parser->parse_message($post['message'], $parser_options);
eval("\$posts .= \"".$templates->get("moderation_mergeposts_post")."\";");
$altbg = alt_trow();

			$message = $parser->parse_message($post['message'], $parser_options);
eval("\$posts .= \"".$templates->get("moderation_mergeposts_post")."\";");
$altbg = alt_trow();

		}

		}


$plugins->run_hooks("moderation_mergeposts");

eval("\$mergeposts = \"".$templates->get("moderation_mergeposts")."\";");
output_page($mergeposts);
break;


$plugins->run_hooks("moderation_mergeposts");

eval("\$mergeposts = \"".$templates->get("moderation_mergeposts")."\";");
output_page($mergeposts);
break;





	// Lets merge those selected posts!
case "do_mergeposts":

	// Lets merge those selected posts!
case "do_mergeposts":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

		{

		{

			error_no_permission();

			error_no_permission();

		}

		}


$plugins->run_hooks("moderation_do_mergeposts");

$mergepost = $mybb->input['mergepost'];
if(count($mergepost) <= 1)


$plugins->run_hooks("moderation_do_mergeposts");

$mergepost = $mybb->input['mergepost'];
if(count($mergepost) <= 1)

		{
error($lang->error_nomergeposts);
}

		{
error($lang->error_nomergeposts);
}


foreach($mergepost as $pid => $yes)
{


foreach($mergepost as $pid => $yes)
{

Zeile 464Zeile 493
	// Move a thread
case "move":
add_breadcrumb($lang->nav_move);

	// Move a thread
case "move":
add_breadcrumb($lang->nav_move);

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

$plugins->run_hooks("moderation_move");


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

$plugins->run_hooks("moderation_move");


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

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

Zeile 478Zeile 507

// Lets get this thing moving!
case "do_move":


// Lets get this thing moving!
case "do_move":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

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

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

		{
error_no_permission();
}

		{
error_no_permission();
}

		// Check if user has moderator permission to move to destination
if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{

		// Check if user has moderator permission to move to destination
if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{

Zeile 492Zeile 524
		}
$newperms = forum_permissions($moveto);
if($newperms['canview'] == "no" && is_moderator($fid, "canmovetononmodforum") != "yes")

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

			error($lang->error_invalidforum);

		}

		}

		if($method != "copy" && $thread['fid'] == $moveto)

		if($method != "copy" && $thread['fid'] == $moveto)

		{

		{

			error($lang->error_movetosameforum);

			error($lang->error_movetosameforum);

		}


		}


		$expire = 0;
if(intval($mybb->input['redirect_expire']) > 0)
{
$expire = time() + (intval($mybb->input['redirect_expire']) * 86400);

		$expire = 0;
if(intval($mybb->input['redirect_expire']) > 0)
{
$expire = time() + (intval($mybb->input['redirect_expire']) * 86400);

		}

$the_thread = $tid;


		}

$the_thread = $tid;


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

$plugins->run_hooks("moderation_do_move");

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

$plugins->run_hooks("moderation_do_move");

Zeile 577Zeile 609
		if(!$modactions)
{
$modactions = "<tr><td class=\"trow1\" colspan=\"4\">$lang->no_mod_options</td></tr>";

		if(!$modactions)
{
$modactions = "<tr><td class=\"trow1\" colspan=\"4\">$lang->no_mod_options</td></tr>";

		}

$plugins->run_hooks("moderation_threadnotes");

		}

$plugins->run_hooks("moderation_threadnotes");


eval("\$threadnotes = \"".$templates->get("moderation_threadnotes")."\";");
output_page($threadnotes);


eval("\$threadnotes = \"".$templates->get("moderation_threadnotes")."\";");
output_page($threadnotes);

Zeile 587Zeile 619

// Update the thread notes!
case "do_threadnotes":


// Update the thread notes!
case "do_threadnotes":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 601Zeile 636
		$db->update_query(TABLE_PREFIX."threads", $sqlarray, "tid='$tid'");
redirect("showthread.php?tid=$tid", $lang->redirect_threadnotesupdated);
break;

		$db->update_query(TABLE_PREFIX."threads", $sqlarray, "tid='$tid'");
redirect("showthread.php?tid=$tid", $lang->redirect_threadnotesupdated);
break;





	// Lets look up the ip address of a post
case "getip":
add_breadcrumb($lang->nav_getip);
if(is_moderator($fid, "canviewips") != "yes")
{
error_no_permission();

	// Lets look up the ip address of a post
case "getip":
add_breadcrumb($lang->nav_getip);
if(is_moderator($fid, "canviewips") != "yes")
{
error_no_permission();

		}

		}


$hostname = @gethostbyaddr($post['ipaddress']);
if(!$hostname || $hostname == $post['ipaddress'])
{
$hostname = $lang->resolve_fail;


$hostname = @gethostbyaddr($post['ipaddress']);
if(!$hostname || $hostname == $post['ipaddress'])
{
$hostname = $lang->resolve_fail;

		}


		}


		// Admin options
$adminoptions = "";
if($mybb->usergroup['cancp'] == "yes" && $mybb->config['hide_admin_links'] != 1)
{
eval("\$adminoptions = \"".$templates->get("moderation_getip_adminoptions")."\";");

		// Admin options
$adminoptions = "";
if($mybb->usergroup['cancp'] == "yes" && $mybb->config['hide_admin_links'] != 1)
{
eval("\$adminoptions = \"".$templates->get("moderation_getip_adminoptions")."\";");

		}


		}


		eval("\$getip = \"".$templates->get("moderation_getip")."\";");
output_page($getip);
break;

		eval("\$getip = \"".$templates->get("moderation_getip")."\";");
output_page($getip);
break;

Zeile 639Zeile 674

eval("\$merge = \"".$templates->get("moderation_merge")."\";");
output_page($merge);


eval("\$merge = \"".$templates->get("moderation_merge")."\";");
output_page($merge);

		break;

		break;


// Lets get those threads together baby! (Merge threads)
case "do_merge":


// Lets get those threads together baby! (Merge threads)
case "do_merge":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

		{

		{

			error_no_permission();
}


			error_no_permission();
}


Zeile 656Zeile 694
		if(!empty($temp))
{
for($i = 0; $i < count($temp); $i++)

		if(!empty($temp))
{
for($i = 0; $i < count($temp); $i++)

			{

			{

				$temp2 = explode("=", $temp[$i], 2);
$parameters[$temp2[0]] = $temp2[1];
}

				$temp2 = explode("=", $temp[$i], 2);
$parameters[$temp2[0]] = $temp2[1];
}

Zeile 689Zeile 727
			error($lang->error_mergewithself);
}
if(is_moderator($mergethread['fid'], "canmanagethreads") != "yes")

			error($lang->error_mergewithself);
}
if(is_moderator($mergethread['fid'], "canmanagethreads") != "yes")

		{
error_no_permission();

		{
error_no_permission();

		}
if($mybb->input['subject'])

		}
if($mybb->input['subject'])

		{

		{

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

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

		}

		}

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

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

Zeile 706Zeile 744
		log_moderator_action($modlogdata, $lang->thread_merged);

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

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

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

		break;


		break;


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

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

Zeile 724Zeile 762
		");
$numposts = $db->num_rows($query);
if($numposts <= "1")

		");
$numposts = $db->num_rows($query);
if($numposts <= "1")

		{

		{

			error($lang->error_cantsplitonepost);
}


			error($lang->error_cantsplitonepost);
}


Zeile 759Zeile 797

// Lets break them up buddy! (Do the split)
case "do_split":


// Lets break them up buddy! (Do the split)
case "do_split":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 830Zeile 871

// Actually delete the threads - Inline moderation
case "do_multideletethreads":


// Actually delete the threads - Inline moderation
case "do_multideletethreads":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 850Zeile 894

// Open threads - Inline moderation
case "multiopenthreads":


// Open threads - Inline moderation
case "multiopenthreads":

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

$moderation->open_threads($threads);




		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);

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

$moderation->open_threads($threads);


log_moderator_action($modlogdata, $lang->multi_opened_threads);
clearinline($fid, "forum");


log_moderator_action($modlogdata, $lang->multi_opened_threads);
clearinline($fid, "forum");

Zeile 869Zeile 916

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


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

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




		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);

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

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

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

Zeile 888Zeile 938

// Approve threads - Inline moderation
case "multiapprovethreads":


// Approve threads - Inline moderation
case "multiapprovethreads":

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




		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);

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

		{
error_no_permission();
}

		{
error_no_permission();
}

Zeile 908Zeile 961

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


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

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

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


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


		$moderation->unapprove_threads($threads, $fid);
$plugins->run_hooks("moderation_multiunapprovethreads");
log_moderator_action($modlogdata, $lang->multi_unapproved_threads);

		$moderation->unapprove_threads($threads, $fid);
$plugins->run_hooks("moderation_multiunapprovethreads");
log_moderator_action($modlogdata, $lang->multi_unapproved_threads);

Zeile 928Zeile 984

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


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

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 947Zeile 1006

// Unstick threads - Inline moderaton
case "multiunstickthreads":


// Unstick threads - Inline moderaton
case "multiunstickthreads":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 989Zeile 1051

// Actually move the threads in Inline moderation
case "do_multimovethreads":


// Actually move the threads in Inline moderation
case "do_multimovethreads":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 997Zeile 1062
		$threadlist = explode("|", $mybb->input['threads']);
foreach($threadlist as $tid)
{

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

			$tids[] = $tid;

			$tids[] = intval($tid);

		}
if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{

		}
if(is_moderator($moveto, "canmanagethreads") != "yes" && is_moderator($fid, "canmovetononmodforum") != "yes")
{

Zeile 1050Zeile 1115

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


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

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 1085Zeile 1153
	// Merge posts - Inline moderation
case "multimergeposts":
add_breadcrumb($lang->nav_multi_mergeposts);

	// Merge posts - Inline moderation
case "multimergeposts":
add_breadcrumb($lang->nav_multi_mergeposts);

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

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

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

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

Zeile 1103Zeile 1171

// Actually merge the posts - Inline moderation
case "do_multimergeposts":


// Actually merge the posts - Inline moderation
case "do_multimergeposts":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 1147Zeile 1218
		}
$pidin = '';
$comma = '';

		}
$pidin = '';
$comma = '';

		foreach($posts as $pid)

		foreach($posts as $pid)

		{
$pid = intval($pid);
$pidin .= "$comma'$pid'";

		{
$pid = intval($pid);
$pidin .= "$comma'$pid'";

Zeile 1169Zeile 1240

// Actually split the posts - Inline moderation
case "do_multisplitposts":


// Actually split the posts - Inline moderation
case "do_multisplitposts":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 1207Zeile 1281

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


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

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




		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);

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

		{
error_no_permission();
}

		{
error_no_permission();
}

Zeile 1232Zeile 1309

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


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

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


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

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

Zeile 1256Zeile 1336

// Manage selected reported posts
case "do_reports":


// Manage selected reported posts
case "do_reports":

 
		// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


		if(is_moderator() != "yes")

		if(is_moderator() != "yes")

		{

		{

			error_no_permission();
}
$flist = '';

			error_no_permission();
}
$flist = '';

Zeile 1267Zeile 1350
			while($forum = $db->fetch_array($query))
{
$flist .= ",'".$forum['fid']."'";

			while($forum = $db->fetch_array($query))
{
$flist .= ",'".$forum['fid']."'";

			}

			}

		}
if($flist)
{

		}
if($flist)
{

Zeile 1309Zeile 1392
		}

$query = $db->simple_select(TABLE_PREFIX."reportedposts", "COUNT(rid) AS count", "reportstatus ='0'");

		}

$query = $db->simple_select(TABLE_PREFIX."reportedposts", "COUNT(rid) AS count", "reportstatus ='0'");

		$warnings = $db->fetch_field($query, "count");

if($mybb->input['rid'])
{
$query = $db->simple_select(TABLE_PREFIX."reportedposts", "COUNT(r.rid) AS count", "r.rid <= '".$mybb->input['rid']."'");
$result = $db->fetch_field($query, "count");
if(($result % $perpage) == 0)
{
$page = $result / $perpage;
}
else
{
$page = intval($result / $perpage) + 1;
}
}
$postcount = intval($warnings)+1;
$pages = $postcount / $perpage;
$pages = ceil($pages);

if($mybb->input['page'] == "last")
{
$page = $pages;
}

if($page > $pages)
{
$page = 1;
}

if($page)
{
$start = ($page-1) * $perpage;
}
else
{
$start = 0;
$page = 1;

		$warnings = $db->fetch_field($query, "count");

if($mybb->input['rid'])
{
$query = $db->simple_select(TABLE_PREFIX."reportedposts", "COUNT(r.rid) AS count", "r.rid <= '".intval($mybb->input['rid'])."'");
$result = $db->fetch_field($query, "count");
if(($result % $perpage) == 0)
{
$page = $result / $perpage;
}
else
{
$page = intval($result / $perpage) + 1;
}
}
$postcount = intval($warnings)+1;
$pages = $postcount / $perpage;
$pages = ceil($pages);

if($mybb->input['page'] == "last")
{
$page = $pages;
}

if($page > $pages)
{
$page = 1;
}

if($page)
{
$start = ($page-1) * $perpage;
}
else
{
$start = 0;
$page = 1;

		}
$upper = $start+$perpage;


		}
$upper = $start+$perpage;


Zeile 1353Zeile 1436
		if($postcount > $perpage)
{
eval("\$reportspages = \"".$templates->get("moderation_reports_multipage")."\";");

		if($postcount > $perpage)
{
eval("\$reportspages = \"".$templates->get("moderation_reports_multipage")."\";");

		}

$query = $db->simple_select(TABLE_PREFIX."forums", "fid,name");
while($forum = $db->fetch_array($query))
{
$forums[$forum['fid']] = $forum['name'];
}
$reports = '';
$query = $db->query("
SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject
FROM ".TABLE_PREFIX."reportedposts r
LEFT JOIN ".TABLE_PREFIX."posts p ON (r.pid=p.pid)
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid)

		}

$query = $db->simple_select(TABLE_PREFIX."forums", "fid,name");
while($forum = $db->fetch_array($query))
{
$forums[$forum['fid']] = $forum['name'];
}
$reports = '';
$query = $db->query("
SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject
FROM ".TABLE_PREFIX."reportedposts r
LEFT JOIN ".TABLE_PREFIX."posts p ON (r.pid=p.pid)
LEFT JOIN ".TABLE_PREFIX."threads t ON (p.tid=t.tid)
LEFT JOIN ".TABLE_PREFIX."users u ON (r.uid=u.uid)
LEFT JOIN ".TABLE_PREFIX."users up ON (p.uid=up.uid)

			WHERE r.reportstatus ='0'
ORDER BY r.dateline ASC
LIMIT $start, $perpage
");
while($report = $db->fetch_array($query))

			WHERE r.reportstatus ='0'
ORDER BY r.dateline ASC
LIMIT $start, $perpage
");
while($report = $db->fetch_array($query))

		{

		{

			$trow = alt_trow();
$reportdate = my_date($mybb->settings['dateformat'], $report['dateline']);
$reporttime = my_date($mybb->settings['timeformat'], $report['dateline']);

			$trow = alt_trow();
$reportdate = my_date($mybb->settings['dateformat'], $report['dateline']);
$reporttime = my_date($mybb->settings['timeformat'], $report['dateline']);

Zeile 1384Zeile 1467
		{
eval("\$reports = \"".$templates->get("moderation_reports_noreports")."\";");
}

		{
eval("\$reports = \"".$templates->get("moderation_reports_noreports")."\";");
}





		$plugins->run_hooks("moderation_reports");

eval("\$reportedposts = \"".$templates->get("moderation_reports")."\";");
output_page($reportedposts);

		$plugins->run_hooks("moderation_reports");

eval("\$reportedposts = \"".$templates->get("moderation_reports")."\";");
output_page($reportedposts);

		break;

		break;

	case "allreports":
if(is_moderator() != "yes")
{
error_no_permission();
}

	case "allreports":
if(is_moderator() != "yes")
{
error_no_permission();
}

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

		
// Figure out if we need to display multiple pages.
$perpage = $mybb->settings['threadsperpage'];

		
// Figure out if we need to display multiple pages.
$perpage = $mybb->settings['threadsperpage'];

Zeile 1424Zeile 1508
		$pages = ceil($pages);

if($mybb->input['page'] == "last")

		$pages = ceil($pages);

if($mybb->input['page'] == "last")

		{
$page = $pages;
}

if($page > $pages)
{
$page = 1;
}


		{
$page = $pages;
}

if($page > $pages)
{
$page = 1;
}


		if($page)
{
$start = ($page-1) * $perpage;
}
else

		if($page)
{
$start = ($page-1) * $perpage;
}
else

		{

		{

			$start = 0;
$page = 1;

			$start = 0;
$page = 1;

		}

		}

		$upper = $start+$perpage;

		$upper = $start+$perpage;





		$multipage = multipage($postcount, $perpage, $page, "moderation.php?action=allreports");
if($postcount > $perpage)

		$multipage = multipage($postcount, $perpage, $page, "moderation.php?action=allreports");
if($postcount > $perpage)

		{

		{

			eval("\$allreportspages = \"".$templates->get("moderation_allreports_multipage")."\";");
}


			eval("\$allreportspages = \"".$templates->get("moderation_allreports_multipage")."\";");
}


Zeile 1454Zeile 1538
		while($forum = $db->fetch_array($query))
{
$forums[$forum['fid']] = $forum['name'];

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

		}

		}

		$reports = '';
$query = $db->query("
SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject

		$reports = '';
$query = $db->query("
SELECT r.*, u.username, up.username AS postusername, up.uid AS postuid, t.subject AS threadsubject

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

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

 
			// Verify incoming POST request
verify_post_check($mybb->input['my_post_key']);


			$plugins->run_hooks("moderation_custommod");
if($tool['type'] == 't' && $mybb->input['modtype'] == 'inlinethread')
{

			$plugins->run_hooks("moderation_custommod");
if($tool['type'] == 't' && $mybb->input['modtype'] == 'inlinethread')
{