Thanks Paul !
I'm using this plugin with "Opt-Out Forums from Get New Posts" by Andreas and i had trouble when i exclude some forums from Get New Posts, then i had modified Paul's Hack to make integration with
Find:
PHP Code:
$xforum_ids = array_keys($vbulletin->forumcache);
Below that, Add:
PHP Code:
$exclude = explode(",",$vbulletin->userinfo['excludeforumsgnp']);
Now Find:
PHP Code:
if ( !($xfperms & $vbulletin->bf_ugp_forumpermissions['canview']) OR !($xfperms & $vbulletin->bf_ugp_forumpermissions['cansearch']))
Replace with:
PHP Code:
if ( !($xfperms & $vbulletin->bf_ugp_forumpermissions['canview']) OR !($xfperms & $vbulletin->bf_ugp_forumpermissions['cansearch']) OR (in_array($xforum_id, $exclude)))