Log in

View Full Version : How to edit a thread/post with vbulletin API


jj
09-06-2006, 06:29 AM
Hi everyone,

didn't find something usefull in the search, so now I'm asking globally.

Anyone can show me how to edit a thread/post with the vbulletin api functions? Currently I'm using

global $vbulletin;
if ($postuserid == 0) $postuserid = $this->postuserid;
$threadinfo = array();
$threaddm =& datamanager_init('Thread_FirstPost', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$foruminfo = fetch_foruminfo($postforumid);
$threaddm->set('forumid', $postforumid);
$threaddm->set('userid', $postuserid);
$threaddm->set('pagetext', $postpagetext);
$threaddm->set('title', $posttitle);
$threaddm->set('allowsmilie', '1');
$threaddm->set('visible', '1');
$threaddm->set_info('forum', $foruminfo);
$tid = $threaddm->save();
build_forum_counters($postforumid);
return $tid;

to create a thread within a function.

Some help would be very nice.

Cheers
Jens

ks_work
11-22-2006, 02:49 PM
I'm second that. Also need to know how to edit/update existing thread/post.

thanks in advance
test of modification bb lll
lll

wahooka
12-04-2006, 03:51 AM
third it ;)

Kungfu
12-04-2006, 11:56 AM
<a href="https://vborg.vbsupport.ru/showthread.php?t=102418&page=2" target="_blank">https://vborg.vbsupport.ru/showt...=102418&page=2</a>