MyBB Community Forums

Full Version: Knwing who delets rep
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Someone is deleting reputations on my forum and it's a smod. But it's not showing in modcp so i can't know who is doing it.

Any help?
AdminCP -> Tools / Maintenance -> Moderator Log or Administrator Log
It's not showing. :|
(2011-01-16, 11:09 AM)Shukaku Wrote: [ -> ]AdminCP -> Tools / Maintenance -> Moderator Log or Administrator Log

Unfortunately, MyBB doesn't logs who is deleting reputations. So its nothing to view these logs.
(2011-01-16, 01:12 PM)Yaldaram Wrote: [ -> ]
(2011-01-16, 11:09 AM)Shukaku Wrote: [ -> ]AdminCP -> Tools / Maintenance -> Moderator Log or Administrator Log

Unfortunately, MyBB doesn't logs who is deleting reputations. So its nothing to view these logs.

This is really a problem. Is there a plugin or how cand i disable smod permission to delete reps?
To revoke Super Moderators deleting reps permissions; Open ./reputation.php file in root and find;
	if($mybb->usergroup['cancp'] != 1 && $mybb->usergroup['issupermod'] != 1 && $existing_reputation['adduid'] != $mybb->user['uid'])

And change it to;
	if($mybb->usergroup['cancp'] != 1 && $mybb->usergroup['issupermod'] == 1 && $existing_reputation['adduid'] != $mybb->user['uid'])