July 11th, 2021 at 6:26 AM
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.
should be
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) &&...