Zeile 865 | Zeile 865 |
---|
");
// 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 943 | Zeile 943 |
---|
}
$reputation_votes = '';
|
}
$reputation_votes = '';
|
| if(!empty($reputation_cache) && $mybb->user['uid'] != 0) { $reputation_ids = implode(',', array_map('array_shift', $reputation_cache)); $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 1025 | Zeile 1040 |
---|
}
$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")."\";"); }
|