There is an error in portal_recent.php which prevents the exclude forum option from working for this module. With Debug on, it gives the error:
where '30' is the module number and may be different.[phpBB Debug] PHP Notice: in file /portal/modules/portal_recent.php on line 68: Undefined index: board3_exclude_forums_30
To fix this, edit /portal/modules/portal_recent.php and on line 68 replace:
Code: Select all
$config['board3_exclude_forums_' . $module_id])
Code: Select all
$config['board3_recent_exclude_forums_' . $module_id])
Regards