
12-19-2009, 03:51 PM
|
|
|
Join Date: Jul 2004
Posts: 84
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Freesteyelz
If you want only selected forums affected try:
This step only addresses which forums are affected when creating a new thread. It does not affect the forums listed in the Jump Menu.
Go into Plugin Manager --> Cyb - Prevent Newbies from Posting to Wrong Forum - MN (newthread_start)
Find:
Code:
if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread'))
and Replace it with:
Code:
if (($vbulletin->options['cyb_preventnewthread_pcneeded'] > $vbulletin->userinfo['posts']) AND is_member_of($vbulletin->userinfo, split(',', $vbulletin->options['cyb_preventnewthread_affectedgroups'])) AND ($vbulletin->GPC['fcon']!=1) AND ($_REQUEST['do']!='postthread') AND in_array($forumid, array(x,y,z)))
Where " x,y,z" are replace it with your Forum ID's that you want affected. To add more forums just separate the ID's with a comma. See if that works. 
|
Thanks Freestyle for replying and taking the time to help out!
|