Quote:
Originally Posted by Atakan KOC
3.5.x
PHP Code:
$rforuminfo = fetch_foruminfo($Feed['forumid']);
$newpost = array(
'emailupdate' => 9999,
'userid' => 'Userid',
'username' => 'Username',
'title' => 'Title',
'message' => 'Message',
'thread' => 'threadid'
);
$threadinfo['threadid'] = 'threadid';
build_new_post('Post', $rforuminfo, $threadinfo, array(), $newpost, $errors);
|
This works, but all messages created end up in a moderation queue even though the forum is not set to moderate posts/threads. I tried adding 'visible'=>'1' but it doesn't make a difference. Any clues? I suppose it's because I'm running this from an outside script, that isn't really logged into VB. I made a modification to functions_newpost.php
PHP Code:
Replaced:
// see if post has to be moderated or if poster in a mod
if (
((
With:
// see if post has to be moderated or if poster in a mod
if ( ($post['visible'] == 0) AND
((
It does the job, but I'd like to understand why it's not working properly..
I also added build_forum_counters($forumid); after posting, otherwise the lastthread info doesn't get updated in the forum list.
Quote:
Originally Posted by Derschizo
What if you put it in the function_new reply and you want it to be a auto second post, what would you put for the threadid?
b/c
$threadinfo['threadid'] = 'threadid'; doesn't seem to work.
I want it in the same thread.
|
You should be using
$threadinfo['threadid'] = 3310; (ie: 3310 is the thread id)