If I get the foruminfo that way, I get the following errors:
Quote:
Fatal error: Existing data passed is not an array
Called set_existing in /www/testvb/includes/class_dm_threadpost.php on line 584
Called post_save_each_post in /www/testvb/includes/class_dm_threadpost.php on line 1536
Called post_save_each in /www/testvb/includes/class_dm_threadpost.php on line 1470
Called save in /www/newincludes/useful.php on line 28
Called postThread in /www/testvb/admincp/featuredcrap.php on line 145
in /includes/class_dm.php on line 235
|
I did a little bit of digging, and I'm getting the impression that this has something to do with the forumcache.
If I fetch the forum info, like so:
PHP Code:
$foruminfo = fetch_foruminfo( $forumid, FALSE );
// instead of
$foruminfo = verify_id('forum', $forumid );
then that error goes away, but the problem remains .. the second thread is not being posted
I'm thinking that perhaps vB expects the forumcache to be updated between two thread-postings or something?
As a last resort I can always use a simple redirect to post the second thread, which I'm guessing would work, but I'd rather get this to work if at all possible.