
09-03-2007, 06:43 PM
|
|
|
Join Date: Oct 2005
Location: Denmark
Posts: 63
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Never mind, I fixed it.
I replaced all setr with set
Once again, thank you!
Quote:
Thank you for your response and the big help. But I cannot get this to work.
This is my code:
PHP Code:
<?php // don't look at the $scriptpath variable. It's assigned from an upper file. require_once("$scriptpath/vbulletin.php"); require_once('./includes/class_dm.php'); require_once('./includes/class_dm_threadpost.php');
$threaddm =& datamanager_init('Thread_FirstPost',$vbulletin,ERRTYPE_ARRAY,'threadpost'); $threaddm->setr('forumid',$destforum); $threaddm->setr('title','Peter Jackson'); $threaddm->setr('pagetext','This thread [b]rocks!'); $threaddm->set('userid','1'); $threaddm->set('open',1); $threaddm->set('visible',1); $threaddm->set('allowsmilie',1); $threaddm->set_info('forum',$newforuminfo); $threaddm->set_info('thread',array()); $threaddm->pre_save(); if(!empty($threaddm->errors)) { print_r($threaddm->errors); exit; } else { $newthreadid = $threaddm->save(); }
?>
And I am getting this error:
Code:
Fatal error: Cannot pass parameter 2 by reference in /[...]/tools_thread.php on line 9
I tried to uncomment this line:
PHP Code:
$threaddm->setr('title','Peter Jackson');
But then it just started complaining about the next line
|
|