Vergleich reputation.php - 1.8.0 - 1.8.5

  Keine Änderungen   Hinzugefügt   Modifiziert   Entfernt
Zeile 12Zeile 12
define('THIS_SCRIPT', 'reputation.php');

$templatelist = "reputation_addlink,reputation_no_votes,reputation,reputation_vote,multipage,multipage_end,multipage_jump_page,multipage_nextpage,multipage_page,multipage_page_current,multipage_page_link_current,multipage_prevpage,multipage_start,reputation_vote_delete";

define('THIS_SCRIPT', 'reputation.php');

$templatelist = "reputation_addlink,reputation_no_votes,reputation,reputation_vote,multipage,multipage_end,multipage_jump_page,multipage_nextpage,multipage_page,multipage_page_current,multipage_page_link_current,multipage_prevpage,multipage_start,reputation_vote_delete";

$templatelist .= ",reputation_add_delete,reputation_add_neutral,reputation_add_positive,reputation_add_negative,reputation_add_error,reputation_add_error_nomodal,reputation_add,reputation_added,reputation_deleted,reputation_vote_report";

$templatelist .= ",reputation_add_delete,reputation_add_neutral,reputation_add_positive,reputation_add_negative,reputation_add_error,reputation_add_error_nomodal,reputation_add,reputation_added,reputation_deleted,reputation_vote_report,postbit_reputation_formatted_link";


require_once "./global.php";
require_once MYBB_ROOT."inc/class_parser.php";


require_once "./global.php";
require_once MYBB_ROOT."inc/class_parser.php";

Zeile 36Zeile 36
}

// If we have a specified incoming username, validate it and fetch permissions for it

}

// If we have a specified incoming username, validate it and fetch permissions for it

$uid = $mybb->get_input('uid', 1);

$uid = $mybb->get_input('uid', MyBB::INPUT_INT);

$user = get_user($uid);
if(!$user)
{

$user = get_user($uid);
if(!$user)
{

Zeile 151Zeile 151
		}
}


		}
}


	if($mybb->get_input('pid', 1))

	if($mybb->get_input('pid', MyBB::INPUT_INT))

	{
// Make sure that this post exists, and that the author of the post we're giving this reputation for corresponds with the user the rep is being given to.

	{
// Make sure that this post exists, and that the author of the post we're giving this reputation for corresponds with the user the rep is being given to.

		$post = get_post($mybb->get_input('pid', 1));

		$post = get_post($mybb->get_input('pid', MyBB::INPUT_INT));

		if($post)
{
$thread = get_thread($post['tid']);

		if($post)
{
$thread = get_thread($post['tid']);

Zeile 220Zeile 220

// Fetch the existing reputation for this user given by our current user if there is one.
// If multiple reputations is allowed, then this isn't needed


// Fetch the existing reputation for this user given by our current user if there is one.
// If multiple reputations is allowed, then this isn't needed

	if($mybb->settings['multirep'] != 1 && $mybb->get_input('pid', 1) == 0)

	if($mybb->settings['multirep'] != 1 && $mybb->get_input('pid', MyBB::INPUT_INT) == 0)

	{
$query = $db->simple_select("reputation", "*", "adduid='".$mybb->user['uid']."' AND uid='{$uid}' AND pid='0'");
$existing_reputation = $db->fetch_array($query);
$rid = $existing_reputation['rid'];

	{
$query = $db->simple_select("reputation", "*", "adduid='".$mybb->user['uid']."' AND uid='{$uid}' AND pid='0'");
$existing_reputation = $db->fetch_array($query);
$rid = $existing_reputation['rid'];

 
		$was_post = false;

	}

	}

	if($mybb->get_input('pid', 1) != 0)

	if($mybb->get_input('pid', MyBB::INPUT_INT) != 0)

	{

	{

		$query = $db->simple_select("reputation", "*", "adduid='".$mybb->user['uid']."' AND uid='{$uid}' AND pid = '".$mybb->get_input('pid', 1)."'");
$existing_post_reputation = $db->fetch_array($query);
$rid = $existing_post_reputation['rid'];


		$query = $db->simple_select("reputation", "*", "adduid='".$mybb->user['uid']."' AND uid='{$uid}' AND pid = '".$mybb->get_input('pid', MyBB::INPUT_INT)."'");
$existing_reputation = $db->fetch_array($query);
$rid = $existing_reputation['rid'];
$was_post = true;

	}
}

	}
}





// Saving the new reputation
if($mybb->input['action'] == "do_add" && $mybb->request_method == "post")
{

// Saving the new reputation
if($mybb->input['action'] == "do_add" && $mybb->request_method == "post")
{

Zeile 241Zeile 243
	verify_post_check($mybb->get_input('my_post_key'));

$plugins->run_hooks("reputation_do_add_start");

	verify_post_check($mybb->get_input('my_post_key'));

$plugins->run_hooks("reputation_do_add_start");





	// Check if the reputation power they're trying to give is within their "power limit"

	// Check if the reputation power they're trying to give is within their "power limit"

	$reputation = abs($mybb->get_input('reputation', 1));


	$reputation = abs($mybb->get_input('reputation', MyBB::INPUT_INT));


	// Deleting our current reputation of this user.
if(!empty($mybb->input['delete']))
{
// Only administrators, super moderators, as well as users who gave a specifc vote can delete one.

	// Deleting our current reputation of this user.
if(!empty($mybb->input['delete']))
{
// Only administrators, super moderators, as well as users who gave a specifc vote can delete one.

		if($mybb->usergroup['cancp'] != 1 && $mybb->usergroup['issupermod'] != 1 && $existing_reputation['adduid'] != $mybb->user['uid'])
{

		if($mybb->usergroup['issupermod'] != 1 && ($mybb->usergroup['candeletereputations'] != 1 || $existing_reputation['adduid'] != $mybb->user['uid'] || $mybb->user['uid'] == 0))
{

			error_no_permission();
}

			error_no_permission();
}


if($mybb->get_input('pid', 1) != 0)
{
$db->delete_query("reputation", "uid='{$uid}' AND adduid='".$mybb->user['uid']."' AND pid = '".$mybb->get_input('pid', 1)."'");
}


if($mybb->get_input('pid', MyBB::INPUT_INT) != 0)
{
$db->delete_query("reputation", "uid='{$uid}' AND adduid='".$mybb->user['uid']."' AND pid = '".$mybb->get_input('pid', MyBB::INPUT_INT)."'");
}

		else
{
$db->delete_query("reputation", "rid='{$rid}' AND uid='{$uid}' AND adduid='".$mybb->user['uid']."'");

		else
{
$db->delete_query("reputation", "rid='{$rid}' AND uid='{$uid}' AND adduid='".$mybb->user['uid']."'");

Zeile 274Zeile 276
	}

$mybb->input['comments'] = trim($mybb->get_input('comments')); // Trim whitespace to check for length

	}

$mybb->input['comments'] = trim($mybb->get_input('comments')); // Trim whitespace to check for length

	if(my_strlen($mybb->input['comments']) < $mybb->settings['minreplength'] && $mybb->get_input('pid', 1) == 0)

	if(my_strlen($mybb->input['comments']) < $mybb->settings['minreplength'] && $mybb->get_input('pid', MyBB::INPUT_INT) == 0)

	{
$message = $lang->add_no_comment;

	{
$message = $lang->add_no_comment;

		if($mybb->input['nomodal'])
{

		if($mybb->input['nomodal'])
{

			eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else

			eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else

Zeile 293Zeile 295
	if($reputation > $mybb->usergroup['reputationpower'])
{
$message = $lang->add_invalidpower;

	if($reputation > $mybb->usergroup['reputationpower'])
{
$message = $lang->add_invalidpower;

		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{
eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}

		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{
eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}

		echo $error;
exit;
}

// The user is trying to give a negative reputation, but negative reps have been disabled.

		echo $error;
exit;
}

// The user is trying to give a negative reputation, but negative reps have been disabled.

	if($mybb->get_input('reputation', 1) < 0 && $mybb->settings['negrep'] != 1)

	if($mybb->get_input('reputation', MyBB::INPUT_INT) < 0 && $mybb->settings['negrep'] != 1)

	{
$message = $lang->add_negative_disabled;
if($mybb->input['nomodal'])

	{
$message = $lang->add_negative_disabled;
if($mybb->input['nomodal'])

Zeile 322Zeile 324
	}

// This user is trying to give a neutral reputation, but neutral reps have been disabled.

	}

// This user is trying to give a neutral reputation, but neutral reps have been disabled.

	if($mybb->get_input('reputation', 1) == 0 && $mybb->settings['neurep'] != 1)
{

	if($mybb->get_input('reputation', MyBB::INPUT_INT) == 0 && $mybb->settings['neurep'] != 1)
{

		$message = $lang->add_neutral_disabled;

		$message = $lang->add_neutral_disabled;

		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{

		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{

			eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}
echo $error;

			eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}
echo $error;

Zeile 338Zeile 340
	}

// This user is trying to give a positive reputation, but positive reps have been disabled.

	}

// This user is trying to give a positive reputation, but positive reps have been disabled.

	if($mybb->get_input('reputation', 1) > 0 && $mybb->settings['posrep'] != 1)

	if($mybb->get_input('reputation', MyBB::INPUT_INT) > 0 && $mybb->settings['posrep'] != 1)

	{
$message = $lang->add_positive_disabled;

	{
$message = $lang->add_positive_disabled;

		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{
eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}
echo $error;
exit;
}


		if($mybb->input['nomodal'])
{
eval("\$error = \"".$templates->get("reputation_add_error_nomodal", 1, 0)."\";");
}
else
{
eval("\$error = \"".$templates->get("reputation_add_error", 1, 0)."\";");
}
echo $error;
exit;
}


	// The length of the comment is too long
if(my_strlen($mybb->input['comments']) > $mybb->settings['maxreplength'])
{

	// The length of the comment is too long
if(my_strlen($mybb->input['comments']) > $mybb->settings['maxreplength'])
{

Zeile 373Zeile 375
	$reputation = array(
"uid" => $uid,
"adduid" => $mybb->user['uid'],

	$reputation = array(
"uid" => $uid,
"adduid" => $mybb->user['uid'],

		"pid" => $mybb->get_input('pid', 1),
"reputation" => $mybb->get_input('reputation', 1),

		"pid" => $mybb->get_input('pid', MyBB::INPUT_INT),
"reputation" => $mybb->get_input('reputation', MyBB::INPUT_INT),

		"dateline" => TIME_NOW,
"comments" => $db->escape_string($mybb->input['comments'])
);

		"dateline" => TIME_NOW,
"comments" => $db->escape_string($mybb->input['comments'])
);

Zeile 382Zeile 384
	$plugins->run_hooks("reputation_do_add_process");

// Updating an existing reputation

	$plugins->run_hooks("reputation_do_add_process");

// Updating an existing reputation

	if(!empty($existing_reputation['uid']) || !empty($existing_post_reputation['uid']))

	if(!empty($existing_reputation['uid']))

	{

	{

		if(!empty($existing_reputation['uid']))
{
$db->update_query("reputation", $reputation, "rid='".$existing_reputation['rid']."'");
}
elseif(!empty($existing_post_reputation['uid']))
{
$db->update_query("reputation", $reputation, "rid='".$existing_post_reputation['rid']."'");
}

		$db->update_query("reputation", $reputation, "rid='".$existing_reputation['rid']."'");









// Recount the reputation of this user - keep it in sync.
$query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'");


// Recount the reputation of this user - keep it in sync.
$query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'");

Zeile 427Zeile 422
	$plugins->run_hooks("reputation_add_start");

// If we have an existing reputation for this user, the user can modify or delete it.

	$plugins->run_hooks("reputation_add_start");

// If we have an existing reputation for this user, the user can modify or delete it.

	if(!empty($existing_reputation['uid']) || !empty($existing_post_reputation['uid']))

	if(!empty($existing_reputation['uid']))

	{
$vote_title = $lang->sprintf($lang->update_reputation_vote, $user['username']);
$vote_button = $lang->update_vote;

	{
$vote_title = $lang->sprintf($lang->update_reputation_vote, $user['username']);
$vote_button = $lang->update_vote;

		if(!empty($existing_reputation['uid']))



		$comments = htmlspecialchars_uni($existing_reputation['comments']);

if($mybb->usergroup['issupermod'] == 1 || ($mybb->usergroup['candeletereputations'] == 1 && $existing_reputation['adduid'] == $mybb->user['uid'] && $mybb->user['uid'] != 0))

		{

		{

			$comments = htmlspecialchars_uni($existing_reputation['comments']);
}
elseif(!empty($existing_post_reputation['uid']))
{
$comments = htmlspecialchars_uni($existing_post_reputation['comments']);

			eval("\$delete_button = \"".$templates->get("reputation_add_delete")."\";");





		}

		}


eval("\$delete_button = \"".$templates->get("reputation_add_delete")."\";");

 
	}
// Otherwise we're adding an entirely new reputation for this user.
else

	}
// Otherwise we're adding an entirely new reputation for this user.
else

Zeile 452Zeile 443
	}
$lang->user_comments = $lang->sprintf($lang->user_comments, $user['username']);


	}
$lang->user_comments = $lang->sprintf($lang->user_comments, $user['username']);


	if($mybb->get_input('pid', 1))

	if($mybb->get_input('pid', MyBB::INPUT_INT))

	{
$post_rep_info = $lang->sprintf($lang->add_reputation_to_post, $user['username']);
$lang->user_comments = $lang->no_comment_needed;

	{
$post_rep_info = $lang->sprintf($lang->add_reputation_to_post, $user['username']);
$lang->user_comments = $lang->no_comment_needed;

Zeile 475Zeile 466
			$vote_check[$value] = '';
}


			$vote_check[$value] = '';
}


		if(!empty($existing_reputation['uid']))

		if(!empty($existing_reputation['uid']) && !$was_post)

		{
$vote_check[$existing_reputation['reputation']] = " selected=\"selected\"";
}

		{
$vote_check[$existing_reputation['reputation']] = " selected=\"selected\"";
}

Zeile 502Zeile 493
			}
}


			}
}


		$mybb->input['pid'] = $mybb->get_input('pid', 1);

		$mybb->input['pid'] = $mybb->get_input('pid', MyBB::INPUT_INT);


$plugins->run_hooks("reputation_add_end");
eval("\$reputation_add = \"".$templates->get("reputation_add", 1, 0)."\";");


$plugins->run_hooks("reputation_add_end");
eval("\$reputation_add = \"".$templates->get("reputation_add", 1, 0)."\";");

Zeile 537Zeile 528
		SELECT r.*, u.username
FROM ".TABLE_PREFIX."reputation r
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=r.adduid)

		SELECT r.*, u.username
FROM ".TABLE_PREFIX."reputation r
LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=r.adduid)

		WHERE rid = '".$mybb->get_input('rid', 1)."'

		WHERE rid = '".$mybb->get_input('rid', MyBB::INPUT_INT)."'

	");
$existing_reputation = $db->fetch_array($query);

// Only administrators, super moderators, as well as users who gave a specifc vote can delete one.

	");
$existing_reputation = $db->fetch_array($query);

// Only administrators, super moderators, as well as users who gave a specifc vote can delete one.

	if($mybb->usergroup['cancp'] != 1 && $mybb->usergroup['issupermod'] != 1 && $existing_reputation['adduid'] != $mybb->user['uid'])

	if($mybb->usergroup['issupermod'] != 1 && ($mybb->usergroup['candeletereputations'] != 1 || $existing_reputation['adduid'] != $mybb->user['uid'] || $mybb->user['uid'] == 0))

	{
error_no_permission();
}

// Delete the specified reputation

	{
error_no_permission();
}

// Delete the specified reputation

	$db->delete_query("reputation", "uid='{$uid}' AND rid='".$mybb->get_input('rid', 1)."'");

	$db->delete_query("reputation", "uid='{$uid}' AND rid='".$mybb->get_input('rid', MyBB::INPUT_INT)."'");


// Recount the reputation of this user - keep it in sync.
$query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'");


// Recount the reputation of this user - keep it in sync.
$query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'");

Zeile 620Zeile 611
			if($title['posts'] <= $user['postnum'])
{
$usertitle = $title['title'];

			if($title['posts'] <= $user['postnum'])
{
$usertitle = $title['title'];

 
				break;

			}
}
unset($usertitles, $title);

			}
}
unset($usertitles, $title);

Zeile 686Zeile 678
	if(empty($mybb->input['show']) && empty($mybb->input['sort']))
{
$s_url = '';

	if(empty($mybb->input['show']) && empty($mybb->input['sort']))
{
$s_url = '';

	}


	}


	// Fetch the total number of reputations for this user
$query = $db->simple_select("reputation r", "COUNT(r.rid) AS reputation_count", "r.uid='{$user['uid']}' $conditions");
$reputation_count = $db->fetch_field($query, "reputation_count");

	// Fetch the total number of reputations for this user
$query = $db->simple_select("reputation r", "COUNT(r.rid) AS reputation_count", "r.uid='{$user['uid']}' $conditions");
$reputation_count = $db->fetch_field($query, "reputation_count");

Zeile 779Zeile 771
			}
}
}

			}
}
}


















	
// Format all reputation numbers
$rep_total = my_number_format($user['reputation']);
$f_positive_count = my_number_format($positive_count);
$f_negative_count = my_number_format($negative_count);
$f_neutral_count = my_number_format($neutral_count);
$f_positive_week = my_number_format($positive_week);
$f_negative_week = my_number_format($negative_week);
$f_neutral_week = my_number_format($neutral_week);
$f_positive_month = my_number_format($positive_month);
$f_negative_month = my_number_format($negative_month);
$f_neutral_month = my_number_format($neutral_month);
$f_positive_6months = my_number_format($positive_6months);
$f_negative_6months = my_number_format($negative_6months);
$f_neutral_6months = my_number_format($neutral_6months);


	// Format the user's 'total' reputation
if($user['reputation'] < 0)

	// Format the user's 'total' reputation
if($user['reputation'] < 0)

	{

	{

		$total_class = "_minus";

		$total_class = "_minus";

	}

	}

	elseif($user['reputation'] > 0)
{
$total_class = "_plus";

	elseif($user['reputation'] > 0)
{
$total_class = "_plus";

	}
else

	}
else

	{
$total_class = "_neutral";
}

	{
$total_class = "_neutral";
}

Zeile 799Zeile 806
	$query = $db->simple_select("reputation", "COUNT(rid) AS rep_posts", "uid = '".$user['uid']."' AND pid > 0");
$rep_post_count = $db->fetch_field($query, "rep_posts");
$rep_posts = my_number_format($rep_post_count);

	$query = $db->simple_select("reputation", "COUNT(rid) AS rep_posts", "uid = '".$user['uid']."' AND pid > 0");
$rep_post_count = $db->fetch_field($query, "rep_posts");
$rep_posts = my_number_format($rep_post_count);





	// General
// We count how many reps in total, then subtract the reps from posts

	// General
// We count how many reps in total, then subtract the reps from posts

	$rep_members = my_number_format($total_reputation - $rep_posts);

	$rep_members = my_number_format($total_reputation - $rep_post_count);


// Is negative reputation disabled? If so, tell the user
if($mybb->settings['negrep'] == 0)


// Is negative reputation disabled? If so, tell the user
if($mybb->settings['negrep'] == 0)

Zeile 818Zeile 825
	if($mybb->settings['neurep'] == 0)
{
$neu_rep_info = $lang->neu_rep_disabled;

	if($mybb->settings['neurep'] == 0)
{
$neu_rep_info = $lang->neu_rep_disabled;

 
	}

$perpage = (int)$mybb->settings['repsperpage'];
if($perpage < 1)
{
$perpage = 15;

	}

// Check if we're browsing a specific page of results

	}

// Check if we're browsing a specific page of results

	if($mybb->get_input('page', 1) > 0)

	if($mybb->get_input('page', MyBB::INPUT_INT) > 0)

	{

	{

		$page = $mybb->get_input('page', 1);
$start = ($page-1) * $mybb->settings['repsperpage'];
$pages = $reputation_count / $mybb->settings['repsperpage'];

		$page = $mybb->get_input('page', MyBB::INPUT_INT);
$start = ($page-1) * $perpage;
$pages = $reputation_count / $perpage;

		$pages = ceil($pages);
if($page > $pages)
{

		$pages = ceil($pages);
if($page > $pages)
{

Zeile 834Zeile 847
		}
}
else

		}
}
else

	{

	{

		$start = 0;
$page = 1;
}

		$start = 0;
$page = 1;
}

Zeile 844Zeile 857
	// Build out multipage navigation
if($reputation_count > 0)
{

	// Build out multipage navigation
if($reputation_count > 0)
{

		$multipage = multipage($reputation_count, $mybb->settings['repsperpage'], $page, "reputation.php?uid={$user['uid']}".$s_url);

		$multipage = multipage($reputation_count, $perpage, $page, "reputation.php?uid={$user['uid']}".$s_url);

	}

// Fetch the reputations which will be displayed on this page

	}

// Fetch the reputations which will be displayed on this page

Zeile 854Zeile 867
		LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=r.adduid)
WHERE r.uid='{$user['uid']}' $conditions
ORDER BY $order

		LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=r.adduid)
WHERE r.uid='{$user['uid']}' $conditions
ORDER BY $order

		LIMIT $start, {$mybb->settings['repsperpage']}

		LIMIT $start, {$perpage}

	");

	");





	// Gather a list of items that have post reputation
$reputation_cache = $post_cache = $post_reputation = array();

	// Gather a list of items that have post reputation
$reputation_cache = $post_cache = $post_reputation = array();





	while($reputation_vote = $db->fetch_array($query))
{
$reputation_cache[] = $reputation_vote;

// If this is a post, hold it and gather some information about it
if($reputation_vote['pid'] && !isset($post_cache[$reputation_vote['pid']]))

	while($reputation_vote = $db->fetch_array($query))
{
$reputation_cache[] = $reputation_vote;

// If this is a post, hold it and gather some information about it
if($reputation_vote['pid'] && !isset($post_cache[$reputation_vote['pid']]))

		{

		{

			$post_cache[$reputation_vote['pid']] = $reputation_vote['pid'];

			$post_cache[$reputation_vote['pid']] = $reputation_vote['pid'];

		}

		}

	}

	}





	if(!empty($post_cache))
{

	if(!empty($post_cache))
{

		$sql = implode(',', $post_cache);

























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

$sql = array("p.pid IN ({$pids})");

// get forums user cannot view
$unviewable = get_unviewable_forums(true);
if($unviewable)
{
$sql[] = "p.fid NOT IN ({$unviewable})";
}

// get inactive forums
$inactive = get_inactive_forums();
if($inactive)
{
$sql[] = "p.fid NOT IN ({$inactive})";
}

if(!$mybb->user['ismoderator'])
{
$sql[] = "p.visible='1'";
$sql[] = "t.visible='1'";
}

$sql = implode(' AND ', $sql);


$query = $db->query("


$query = $db->query("

			SELECT p.pid, p.uid, p.message, t.tid, t.subject

			SELECT p.pid, p.uid, p.fid, p.visible, p.message, t.tid, t.subject, t.visible AS thread_visible

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

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

			WHERE p.pid IN ({$sql})

			WHERE {$sql}

		");

		");

 

$forumpermissions = array();


while($post = $db->fetch_array($query))
{


while($post = $db->fetch_array($query))
{

 
			if(($post['visible'] == 0 || $post['thread_visible'] == 0) && !is_moderator($post['fid'], 'canviewunapprove'))
{
continue;
}

if(($post['visible'] == -1 || $post['thread_visible'] == -1) && !is_moderator($post['fid'], 'canviewdeleted'))
{
continue;
}

if(!isset($forumpermissions[$post['fid']]))
{
$forumpermissions[$post['fid']] = forum_permissions($post['fid']);
}

// Make sure we can view this post
if(isset($forumpermissions[$post['fid']]['canonlyviewownthreads']) && $forumpermissions[$post['fid']]['canonlyviewownthreads'] == 1 && $post['uid'] != $mybb->user['uid'])
{
continue;
}


			$post_reputation[$post['pid']] = $post;
}
}

			$post_reputation[$post['pid']] = $post;
}
}

Zeile 902Zeile 962

// Format the username of this poster
if(!$reputation_vote['username'])


// Format the username of this poster
if(!$reputation_vote['username'])

		{

		{

			$reputation_vote['username'] = $lang->na;
$reputation_vote['user_reputation'] = '';

			$reputation_vote['username'] = $lang->na;
$reputation_vote['user_reputation'] = '';

		}

		}

		else
{
$reputation_vote['username'] = format_name($reputation_vote['username'], $reputation_vote['user_usergroup'], $reputation_vote['user_displaygroup']);
$reputation_vote['username'] = build_profile_link($reputation_vote['username'], $reputation_vote['uid']);
$reputation_vote['user_reputation'] = "({$reputation_vote['user_reputation']})";

		else
{
$reputation_vote['username'] = format_name($reputation_vote['username'], $reputation_vote['user_usergroup'], $reputation_vote['user_displaygroup']);
$reputation_vote['username'] = build_profile_link($reputation_vote['username'], $reputation_vote['uid']);
$reputation_vote['user_reputation'] = "({$reputation_vote['user_reputation']})";

		}


		}


		$vote_reputation = (int)$reputation_vote['reputation'];

// This is a negative reputation

		$vote_reputation = (int)$reputation_vote['reputation'];

// This is a negative reputation

Zeile 948Zeile 1008
		$postrep_given = '';
if($reputation_vote['pid'])
{

		$postrep_given = '';
if($reputation_vote['pid'])
{

			$link = get_post_link($reputation_vote['pid'])."#pid{$reputation_vote['pid']}";

$thread_link = '';

			$postrep_given = $lang->sprintf($lang->postrep_given_nolink, $user['username']);



			if(isset($post_reputation[$reputation_vote['pid']]))
{

			if(isset($post_reputation[$reputation_vote['pid']]))
{

				$post = $post_reputation[$reputation_vote['pid']];

$thread_link = get_thread_link($post['tid']);
$subject = htmlspecialchars_uni($post['subject']);


				$thread_link = get_thread_link($post_reputation[$reputation_vote['pid']]['tid']);
$subject = htmlspecialchars_uni($parser->parse_badwords($post_reputation[$reputation_vote['pid']]['subject']));




				$thread_link = $lang->sprintf($lang->postrep_given_thread, $thread_link, $subject);

				$thread_link = $lang->sprintf($lang->postrep_given_thread, $thread_link, $subject);

 
				$link = get_post_link($reputation_vote['pid'])."#pid{$reputation_vote['pid']}";

$postrep_given = $lang->sprintf($lang->postrep_given, $link, $user['username'], $thread_link);

			}

			}


$postrep_given = $lang->sprintf($lang->postrep_given, $link, $user['username'], $thread_link);

 
		}

// Does the current user have permission to delete this reputation? Show delete link
$delete_link = '';

		}

// Does the current user have permission to delete this reputation? Show delete link
$delete_link = '';

		if($mybb->usergroup['cancp'] == 1 || $mybb->usergroup['issupermod'] == 1 || ($mybb->usergroup['cangivereputations'] == 1 && $reputation_vote['adduid'] == $mybb->user['uid'] && $mybb->user['uid'] != 0))

		if($mybb->usergroup['issupermod'] == 1 || ($mybb->usergroup['candeletereputations'] == 1 && $reputation_vote['adduid'] == $mybb->user['uid'] && $mybb->user['uid'] != 0))

		{
eval("\$delete_link = \"".$templates->get("reputation_vote_delete")."\";");
}

		{
eval("\$delete_link = \"".$templates->get("reputation_vote_delete")."\";");
}