
08-16-2011, 03:08 PM
|
 |
|
|
Join Date: Sep 2005
Posts: 4,141
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by GavoTrav
I used,
Code:
if (in_array($thread['forumid'], array(80, 102))
$vbulletin->options['reputationenable'] = 0;
Result:
Code:
Parse error: syntax error, unexpected T_VARIABLE in /home/user/public_html/forums/showthread.php(377) : eval()'d code on line 2
How would I go about putting it for a specific forumid.
The forum Ids would be 80, 102
|
Try this:
HTML Code:
<if condition="in_array($post['forumid'], array(80,102))">
reputation code here
</if>
|