I found this:
PHP Code:
$dataman =& datamanager_init('Post', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$dataman->set_existing($postinfo);
($hook = vBulletinHook::fetch_hook('editpost_update_process')) ? eval($hook) : false;
$dataman->set_info('parseurl', (($vbulletin->options['allowedbbcodes'] & ALLOW_BBCODE_URL) AND $foruminfo['allowbbcode'] AND $edit['parseurl']));
$dataman->set_info('posthash', $posthash);
$dataman->set_info('forum', $foruminfo);
...
But I don't know how to duplicate the dataman, set it up to a different existing like:
PHP Code:
$linkdataman->set_existing(fetch_postinfo($postinfo['linkid']))
And then make $dataman functions reflect $linkdataman ones... seems quite difficult...