PDA

View Full Version : Post Data Manager + Guest + Username


aussi
08-05-2008, 12:06 PM
Hi All,

I'm having a little trouble using the Post Data Manager. I can post fine, both as a guest and as a registered user. However, when posting as a guest I want the user to be able to enter a username to be assigned to the post, but I can't get this last bit to work - I always get the posts appearing as 'Unregistered'.

I'm using the following code:


$threaddm =& datamanager_init('Post', $vbulletin, ERRTYPE_ARRAY, 'threadpost');

$userinfo = $vbulletin->datastore->registry->userinfo;

$threaddm->set_info('user', $userinfo);
$threaddm->set('userid', $userinfo['userid']);
$threaddm->set('username', 'guest username');
$threaddm->set('threadid', [valid thread ID here]);
$threaddm->set('pagetext', 'blah blah blah blah blah blah blah');
$threaddm->set('allowsmilie', 1);
$threaddm->set('visible', 1);

$threaddm->pre_save();

// Check for errors
if (!empty($threaddm->errors)) {
print_r($threaddm->errors);
exit;
} else {
$postID = $threaddm->save();
}

unset($threaddm);



I've also tried setting the guest user name inside $userinfo after fetching it:


$userinfo = $vbulletin->datastore->registry->userinfo;
$userinfo['username'] = 'guest username';



I've also tried NOT calling $threaddm->set_info at all.

I'm certain I must be missing something stupid here, but just can't see what.

Cheers
Austin.