I used this code, IT actually adds the thread but i get the following warning
Warning: array_merge() [function.array-merge]: Argument #1 is not an array in \global.php on line 329
Warning: Invalid argument supplied for foreach() in \includes\functions.php on line 2177
Also if the subject in the forum ID is send again then it just exits it doesn't flow through the code.
Help
Thanks,
LOW LOW.
Quote:
Originally Posted by StefanS
Hi,
just tested the following code:
PHP Code:
<?
require('./global.php');
require('./includes/functions_newpost.php');
$userid = 10;
$forumid = 100;
$foruminfo = fetch_foruminfo($forumid);
$bbuserinfo = fetch_userinfo($userid);
$post[title] = 'subject';
$post[message] = 'message';
$post[poststarttime] = TIMENOW;
$post[posthash] = md5($post[poststarttime] . $bbuserinfo['userid'] . $bbuserinfo['salt']);
build_new_post('thread', $foruminfo, array(), 0, $post, $errors);
?>
works for me with 3.03 without problems ...
|