How do I get the report this post to moderator to not show up if it is the users own post (when you have it turned on in the admin CP) and still not show up anywhere when it is turned off?
Can I just edit this code or do I need to make another piece of code to handle not showing up in the users own post?
I'm trying to merge this hack with the hack in the link below and I'm getting confused. (Surprise, surprise, I know.

)
https://vborg.vbsupport.ru/showthrea...676#post200676
PHP Code:
// Report Post Disable Hack
if ($bbuserinfo[canreportposts]==1) {
eval("\$post[report] .= \"".gettemplate("postbit_report")."\";");
} else {
$post[report] = "";
}