
05-04-2013, 06:37 PM
|
 |
|
|
Join Date: Sep 2004
Location: California/Idaho
Posts: 41,180
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by lokey
So, when trying to make the function of the newthread_start plugin work on multiple selected forums, it should look like this? -
if "in_array($foruminfo['forumid'], array (1,2,3,4,5,6,7))"
{
$newpost[message] = "Date: /n Time: /n Address: /n";
}
|
For PHP is would be something like:
PHP Code:
if (in_array($foruminfo['forumid'], array (1,2,3,4,5,6,7)))
{
$newpost[message] = "Date: /n Time: /n Address: /n";
}
|