I want to disable the infraction link for moderators who aren't assigned to the specific section.
The plugin I'm trying to use on the
postbit_display_complete hook:
PHP Code:
if(!can_moderate($this->forum['forumid'], '', $userid)){
$show['infractionlink'] = false;
}
But this removes the infraction link even if they can moderate that specific section.
Also tried:
PHP Code:
if(!can_moderate($this->thread['forumid'])){
$show['infractionlink'] = false;
}