If you do that, then no one can view the thread content - is that what you want?
One thing you may want to try is to disable rss1 and rss2 (I think rss only gives title, date, and forum). Find the switch around line 160 and change to these (middle) lines:
PHP Code:
case 'RSS':
$vbulletin->GPC['nohtml'] = 0;
case 'RSS1':
$vbulletin->GPC['type'] = 'RSS';
$vbulletin->GPC['nohtml'] = 0;
break;
case 'RSS2':
$vbulletin->GPC['type'] = 'RSS';
$vbulletin->GPC['nohtml'] = 0;
break;
default:
$handled = false;