Zeile 46 | Zeile 46 |
---|
// Fetch display group properties. $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
// Fetch display group properties. $displaygroupfields = array("title", "description", "namestyle", "usertitle", "stars", "starimage", "image");
|
| if(!$user['displaygroup']) { $user['displaygroup'] = $user['usergroup']; }
|
$display_group = usergroup_displaygroup($user['displaygroup']); if(is_array($display_group)) {
| $display_group = usergroup_displaygroup($user['displaygroup']); if(is_array($display_group)) {
|
Zeile 160 | Zeile 166 |
---|
{ $query = $db->simple_select("reputation", "*", "adduid='".$mybb->user['uid']."' AND uid='{$uid}' AND pid='0'"); $existing_reputation = $db->fetch_array($query);
|
{ $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'];
| if($existing_reputation) { $rid = $existing_reputation['rid']; }
|
$was_post = false; } 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', MyBB::INPUT_INT)."'"); $existing_reputation = $db->fetch_array($query);
|
$was_post = false; } 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', MyBB::INPUT_INT)."'"); $existing_reputation = $db->fetch_array($query);
|
$rid = $existing_reputation['rid'];
| if($existing_reputation) { $rid = $existing_reputation['rid']; } else { $rid = 0; }
|
$was_post = true; }
| $was_post = true; }
|
Zeile 186 | Zeile 204 |
---|
if($numtoday >= $mybb->usergroup['maxreputationsday']) { $message = $lang->add_maxperday;
|
if($numtoday >= $mybb->usergroup['maxreputationsday']) { $message = $lang->add_maxperday;
|
} }
| } }
|
// Is the user giving too much reputation to another? if(!$message && $mybb->usergroup['maxreputationsperuser'] != 0) {
| // Is the user giving too much reputation to another? if(!$message && $mybb->usergroup['maxreputationsperuser'] != 0) {
|
Zeile 203 | Zeile 221 |
---|
}
// We have the correct post, but has the user given too much reputation to another in the same thread?
|
}
// We have the correct post, but has the user given too much reputation to another in the same thread?
|
if(!$message && $was_post && $mybb->usergroup['maxreputationsperthread'] != 0)
| if(!$message && !empty($was_post) && $mybb->usergroup['maxreputationsperthread'] != 0)
|
{ $timesearch = TIME_NOW - (60 * 60 * 24); $query = $db->query("
| { $timesearch = TIME_NOW - (60 * 60 * 24); $query = $db->query("
|
Zeile 216 | Zeile 234 |
---|
$numtoday = $db->fetch_field($query, 'posts');
if($numtoday >= $mybb->usergroup['maxreputationsperthread'])
|
$numtoday = $db->fetch_field($query, 'posts');
if($numtoday >= $mybb->usergroup['maxreputationsperthread'])
|
{
| {
|
$message = $lang->add_maxperthread; } }
| $message = $lang->add_maxperthread; } }
|
Zeile 264 | Zeile 282 |
---|
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']."'");
|
}
// Recount the reputation of this user - keep it in sync. $query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'"); $reputation_value = $db->fetch_field($query, "reputation_count");
| }
// Recount the reputation of this user - keep it in sync. $query = $db->simple_select("reputation", "SUM(reputation) AS reputation_count", "uid='{$uid}'"); $reputation_value = $db->fetch_field($query, "reputation_count");
|
$db->update_query("users", array('reputation' => (int)$reputation_value), "uid='{$uid}'"); eval("\$error = \"".$templates->get("reputation_deleted", 1, 0)."\";"); echo $error;
| $db->update_query("users", array('reputation' => (int)$reputation_value), "uid='{$uid}'"); eval("\$error = \"".$templates->get("reputation_deleted", 1, 0)."\";"); echo $error;
|
Zeile 421 | Zeile 439 |
---|
if($mybb->input['action'] == "add") { $plugins->run_hooks("reputation_add_start");
|
if($mybb->input['action'] == "add") { $plugins->run_hooks("reputation_add_start");
|
| $delete_button = '';
|
// If we have an existing reputation for this user, the user can modify or delete it. $user['username'] = htmlspecialchars_uni($user['username']);
| // If we have an existing reputation for this user, the user can modify or delete it. $user['username'] = htmlspecialchars_uni($user['username']);
|
Zeile 525 | Zeile 544 |
---|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
{ // Verify incoming POST request verify_post_check($mybb->get_input('my_post_key'));
|
| $rid = $mybb->get_input('rid', MyBB::INPUT_INT); $plugins->run_hooks("reputation_delete_start");
|
// Fetch the existing reputation for this user given by our current user if there is one. $query = $db->query(" SELECT r.*, u.username FROM ".TABLE_PREFIX."reputation r LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=r.adduid)
|
// Fetch the existing reputation for this user given by our current user if there is one. $query = $db->query(" 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', MyBB::INPUT_INT)."'
| WHERE r.rid = '{$rid}' AND r.uid = '{$uid}'
|
"); $existing_reputation = $db->fetch_array($query);
| "); $existing_reputation = $db->fetch_array($query);
|
Zeile 540 | Zeile 563 |
---|
{ error_no_permission(); }
|
{ error_no_permission(); }
|
| $plugins->run_hooks("reputation_delete_end");
|
// Delete the specified reputation
|
// Delete the specified reputation
|
$db->delete_query("reputation", "uid='{$uid}' AND rid='".$mybb->get_input('rid', MyBB::INPUT_INT)."'");
| $db->delete_query("reputation", "uid='{$uid}' AND rid='{$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 584 | Zeile 609 |
---|
if(trim($user['usertitle']) != '') { $usertitle = $user['usertitle'];
|
if(trim($user['usertitle']) != '') { $usertitle = $user['usertitle'];
|
}
| }
|
// Using our display group's user title elseif(trim($display_group['usertitle']) != '') {
| // Using our display group's user title elseif(trim($display_group['usertitle']) != '') {
|
Zeile 603 | Zeile 628 |
---|
} } unset($usertitles, $title);
|
} } unset($usertitles, $title);
|
}
| }
|
$usertitle = htmlspecialchars_uni($usertitle);
| $usertitle = htmlspecialchars_uni($usertitle);
|
Zeile 644 | Zeile 669 |
---|
$s_url = '&show=all'; $conditions = ''; $show_select['all'] = 'selected="selected"';
|
$s_url = '&show=all'; $conditions = ''; $show_select['all'] = 'selected="selected"';
|
break; }
| break; }
|
// Check the sorting options for the reputation list
|
// Check the sorting options for the reputation list
|
$sort_selected = array('username' => '', 'last_ipdated' => '');
| $sort_selected = array('username' => '', 'last_updated' => '');
|
switch($mybb->get_input('sort')) { case "username":
| switch($mybb->get_input('sort')) { case "username":
|
Zeile 714 | Zeile 739 |
---|
if($reputation_vote['dateline'] >= $last_week) { $positive_week++;
|
if($reputation_vote['dateline'] >= $last_week) { $positive_week++;
|
}
| }
|
if($reputation_vote['dateline'] >= $last_month) { $positive_month++;
| if($reputation_vote['dateline'] >= $last_month) { $positive_month++;
|
Zeile 859 | Zeile 884 |
---|
");
// Gather a list of items that have post reputation
|
");
// Gather a list of items that have post reputation
|
$reputation_cache = $post_cache = $post_reputation = array();
| $reputation_cache = $post_cache = $post_reputation = $not_reportable = array();
|
while($reputation_vote = $db->fetch_array($query)) {
| while($reputation_vote = $db->fetch_array($query)) {
|
Zeile 937 | Zeile 962 |
---|
}
$reputation_votes = '';
|
}
$reputation_votes = '';
|
| if(!empty($reputation_cache) && $mybb->user['uid'] != 0) { $reputation_ids = implode(',', array_column($reputation_cache, 'rid')); $query = $db->query(" SELECT id, reporters FROM ".TABLE_PREFIX."reportedcontent WHERE reportstatus != '1' AND id IN (".$reputation_ids.") AND type = 'reputation' "); while($report = $db->fetch_array($query)) { $reporters = my_unserialize($report['reporters']); if(is_array($reporters) && in_array($mybb->user['uid'], $reporters)) { $not_reportable[] = $report['id']; } } }
|
foreach($reputation_cache as $reputation_vote) {
| foreach($reputation_cache as $reputation_vote) {
|
Zeile 1019 | Zeile 1059 |
---|
}
$report_link = '';
|
}
$report_link = '';
|
if($mybb->user['uid'] != 0)
| if($mybb->user['uid'] != 0 && !in_array($reputation_vote['rid'], $not_reportable))
|
{ eval("\$report_link = \"".$templates->get("reputation_vote_report")."\";"); }
| { eval("\$report_link = \"".$templates->get("reputation_vote_report")."\";"); }
|