open functions.php
find:
PHP Code:
if($perms[canaddcomments]) {
eval("\$addcom = \"".gettemplate("comment_addbutton")."\";");
} else {
$addcom="";
}
replace it with:
PHP Code:
if($perms[canaddcomments]) {
if($bbuserinfo[userid]=="$post[userid]") {
$addcom="";
} else {
eval("\$addcom = \"".gettemplate("comment_addbutton")."\";");
}
} else {
$addcom="";
}
That should do the trick but i am not positive
g-force2k2