PDA

View Full Version : I must moderate all new threads


Ducks
08-05-2007, 07:21 AM
Everytime a user creates a thread I must moderate it to be shown. I'm not sure why this happen, but I'm using a custom thread creation page maybe my script needs a touch.

$vbulletin->options['reportforum'] = $_POST['genre'];
$report_foruminfo = fetch_foruminfo($vbulletin->options['reportforum']);

$newpost = array(
'emailupdate' => 9999,
'userid' => $vbulletin->userinfo['userid'],
'username' => $vbulletin->userinfo['username'],
'title' => $_POST['title'],
'message' => $thread,
'iconid' => $_POST['language']
);

require_once(DIR . '/includes/functions_newpost.php');
build_new_post('thread', $report_foruminfo, array(), array(), $newpost, $errors);

I hope you help me out.

ozmazdaclub
08-08-2007, 03:11 PM
does this happen in all forum sections or only i one section?

ZomgStuff
08-08-2007, 07:39 PM
Go into admin cp and make sure that that forum doesn't "follow moderatoin rules" or the opposite. Can't remember which, just find it and it'll say.

Farcaster
08-08-2007, 08:51 PM
Ducks, this is a wild guess, but have you tried adding visible to the $newpost array and setting that to 1?