Makestation

Full Version: Display error in custom forum permission settings for guests in ACP
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
If you go to "Set custom permissions" for guests in ACP forum management, the "Miscellaneous" tab looks like this:


The error is caused by an typo in admin/modules/forum/management.php line 791.

PHP Code:
if(!in_array($field['field'], $hidefields) &&... 


should be


PHP Code:
if(!in_array($field['Field'], $hidefields) &&...