Jump to content


Photo

Reputation viewer


reputation.php has this

$rep_log_where    = "r.member_id=%d";

Because of this

1) If you view "reputation received", it is actually showing the reputation the member has given (because it's looking in reputation_index for r.member_id=member_you_are_viewing)
2) If you view "reputation given", it is showing reputation given, however every member is blank (because it sprintf()'s "m.member_id" but we use replacement %d which is only an integer, so it does r.member_id=0).  Even if we fixed this to %s, it would show ever member as the member you are viewing, and not the member who the member you are viewing actually gave reputation to.

Status: Not a Bug
Version: 3.2.1
Fixed In:


1 Comments

Rep viewer in ACP was removed in 3.3, so this is no longer relevant.