Quote:
Originally Posted by netwind
I't trying delete multiply posts :
PHP Code:
$postdm=& datamanager_init('Post', $vbulletin, ERRTYPE_ARRAY, 'threadpost');
$postdm->set_condition("threadid=200");
$count_post+=$postdm->delete();
$postdm->has_errors(true);
unset($postdm);
but nothing happens.
Is this class really functioning ?
|
A few things, firstly, why not just delete the thread? I am not really sure what will happen if you delete all posts from a thread but leave the thread lying around
secondly, assuming you do want an empty thread, you should be using "Post_Multiple", not "Post" the Post dm is pretty much expecting a single postid
Thirdly, pass true into delete