
12-19-2005, 01:57 PM
|
 |
|
|
Join Date: Feb 2004
Location: I LOVE New York!
Posts: 2,886
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by pipin
so i do this:
Code:
//ENABLE FORM TO BE POSTED - 1 = yes, 0 = no
$formforum = "0";
//ENABLE FORM TO REPLY TO EXISTING THREAD - 1 = yes, 0 = no
$formreply = "1";
//EXISTING THREAD ID FOR FORM TO REPLY IN
$formreplythreadid = $threadinfo[threadid];
Opening the form with
http://www.xx.xxx/vbulletin//newthread.php?do=form&$t=84
causes
Warnung: Cannot use a scalar value as an array in /includes/functions_newpost.php (Zeile 258)
setting $formreplythreadid = "84"; works
|
Link should be:
http://www.xx.xxx/vbulletin//newthread.php?do=form&t=84
|