Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Not Solved [How To?] Reputation
#1
Not Solved
Is there a way to only allow users to give the reputation points I set it to be and not the range. For example, if I set a user's rep power to 3, they should be only allowed to do -3, 0, 3 and not -2, -1, 1, 2.
#2
Not Solved
In reputation.php, find:
for($i = 1; $i <= $reputationpower; ++$i)
Replace with:
for($i = $reputationpower; $i <= $reputationpower; ++$i) // hacky
Dennis Tsang
Former MyBB Team Member
Web: http://dennistt.net
#3
Not Solved
(2012-01-04, 07:37 AM)Dennis Tsang Wrote: In reputation.php, find:
for($i = 1; $i <= $reputationpower; ++$i)
Replace with:
for($i = $reputationpower; $i <= $reputationpower; ++$i) // hacky

Thanks for this.


Forum Jump:


Users browsing this thread: 1 Guest(s)