oh, sorry, didn't use rating on my board *gg*
ok, open newreply.php
find this:
PHP Code:
if ($rating > 0 and $rating < 6 and $foruminfo['allowratings'] == 1) {
if ($permissions['canthreadrate']) {
$vote = intval($rating);
change it to:
PHP Code:
if ($rating > 0 and $rating < 6 and $foruminfo['allowratings'] == 1 and $threadinfo[postuserid]!=$bbuserinfo['userid']) {
if ($permissions['canthreadrate']) {
$vote = intval($rating);