New version released! Change log: 1.0.1 => 1.0.2: Driver Error when click on others tabs from TODAY'S ACTIVE CONTENT, for those who didn't select any forum.
Manual fix:
On admin\applications\core\modules_public\search\search.php, find: /* (SOS30) Block Forums from 'View New Content' v1.0.1 */
if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) )
{
$this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] );
}
Change to:
/* (SOS30) Block Forums from 'View New Content' v1.0.2 */
if( $this->request['search_app'] == 'forums' AND $this->settings['sos30_blockforums_on'] AND in_array( $this->member->getProperty('member_group_id') , explode(',', $this->settings['sos30_blockforums_groups'] ) ) AND $this->memberData['blocked_forums'] != '' )
{
$this->search_plugin->setCondition( 't.forum_id', 'NOT IN', $this->memberData['blocked_forums'] );
}