Zeile 36 | Zeile 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 151 | Zeile 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 220 | Zeile 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']; $was_post = false; }
|
{ $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)."'");
| $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;
| $existing_reputation = $db->fetch_array($query); $rid = $existing_reputation['rid']; $was_post = true;
|
Zeile 245 | Zeile 245 |
---|
$plugins->run_hooks("reputation_do_add_start");
// Check if the reputation power they're trying to give is within their "power limit"
|
$plugins->run_hooks("reputation_do_add_start");
// 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)
| 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', 1)."'");
| $db->delete_query("reputation", "uid='{$uid}' AND adduid='".$mybb->user['uid']."' AND pid = '".$mybb->get_input('pid', MyBB::INPUT_INT)."'");
|
} else {
| } else {
|
Zeile 276 | Zeile 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; if($mybb->input['nomodal'])
| { $message = $lang->add_no_comment; if($mybb->input['nomodal'])
|
Zeile 308 | Zeile 308 |
---|
}
// The user is trying to give a negative reputation, but negative reps have been disabled.
|
}
// 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 324 | Zeile 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; if($mybb->input['nomodal'])
| { $message = $lang->add_neutral_disabled; if($mybb->input['nomodal'])
|
Zeile 340 | Zeile 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; if($mybb->input['nomodal'])
| { $message = $lang->add_positive_disabled; if($mybb->input['nomodal'])
|
Zeile 375 | Zeile 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 428 | Zeile 428 |
---|
$vote_button = $lang->update_vote; $comments = htmlspecialchars_uni($existing_reputation['comments']);
|
$vote_button = $lang->update_vote; $comments = htmlspecialchars_uni($existing_reputation['comments']);
|
eval("\$delete_button = \"".$templates->get("reputation_add_delete")."\";");
| if($mybb->usergroup['issupermod'] == 1 || ($mybb->usergroup['candeletereputations'] == 1 && $existing_reputation['adduid'] == $mybb->user['uid'] && $mybb->user['uid'] != 0)) { 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 440 | Zeile 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 490 | Zeile 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 525 | Zeile 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 809 | Zeile 812 |
---|
}
// 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);
| $page = $mybb->get_input('page', MyBB::INPUT_INT);
|
$start = ($page-1) * $mybb->settings['repsperpage']; $pages = $reputation_count / $mybb->settings['repsperpage']; $pages = ceil($pages);
| $start = ($page-1) * $mybb->settings['repsperpage']; $pages = $reputation_count / $mybb->settings['repsperpage']; $pages = ceil($pages);
|
Zeile 954 | Zeile 957 |
---|
// 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")."\";"); }
|