Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions root/includes/acp/acp_reputation.php
Original file line number Diff line number Diff line change
Expand Up @@ -311,8 +311,8 @@ function main($id, $mode)
$sql = 'SELECT SUM(point) AS total_points, rep_to
FROM ' . REPUTATIONS_TABLE . '
WHERE action != 5
AND rep_to >= ' . ($start + 1) . '
AND rep_to <= ' . ($start + $this->step) . '
AND rep_id >= ' . ($start + 1) . '
AND rep_id <= ' . ($start + $this->step) . '
GROUP BY rep_to';
$result = $db->sql_query($sql);

Expand Down