Quote:
Originally posted by BigJohnson
HELP PLEASE. I would like to no how you can change this hack so you cannot rate your self please.
|
Easy.
In userrate.php, find:
PHP Code:
} elseif ($rateduser[allowrate]==0) {
eval("standarderror(\"".gettemplate("error_norate")."\");");
exit;
Underneath, add:
PHP Code:
} elseif ($bbuserinfo['userid'] == $rateduser[userid]) {
eval("standarderror(\"".gettemplate("error_samerate")."\");");
exit;
Then, add a new template called:
error_samerate
with this contents:
Code:
You are not allowed to rate yourself! Press the back button to return to where you were.
Done!