Just trying to learn the system.
This doesnt run (hangs on set title):
Code:
$userdmBU =& datamanager_init('Blog_User', $vbulletin, ERRTYPE_ARRAY);
$userdmBU->set('bloguserid', 65);
$userdmBU->set('title', 'This is a test Title');
$userdmBU->set('description', 'This is the description of my blog');
$userdmBU->save();
This runs but doesnt change anything:
Code:
$userdmBU =& datamanager_init('Blog_User', $vbulletin, ERRTYPE_ARRAY);
$existing = array( 'bloguserid' => 65, 'title' => 'This is a test Title', 'description' => 'This is the description of my blog' );
$userdmBU->set_existing(&$existing);
$userdmBU->save();
Thanks for you help!
Austin
--------------- Added [DATE]1251775569[/DATE] at [TIME]1251775569[/TIME] ---------------
Anyone out there who know this stuff and is willing to share??
Thanks!