Is it possible, to check which users that have rated threads?
Nope, i'm afraid that is not possible.
Ah, that sucks.
I hate when users are abusing the ratings, by one starring every thread.
There isn't a plugin for it but you can check that in your database with phpMyAdmin
Check who made the most ratings:
SELECT uid, COUNT(tid) AS ratings FROM `mybb_threadratings` GROUP BY uid ORDER BY ratings
To know which user it is: /member.php?action=profile&uid=<HERE THE UID>
The first method is free, though!
(2011-03-19, 04:43 PM)Dimon Wrote: [ -> ]The first method is free, though!
But in that method only admin have access to view the list, in my plugin you may specify usegroups and in selective forums
OP here just want to check who's abusing the Thread ratings
I think the OP can pick for himself which option is the best.
I think so too Uncontrol, thank you ^_^