vBulletin 4 でスレッドを削除しようとすると、このエラーが発生します。これはアドオンの変更であるため、vBulletin の問題ではありません。以下は私が使用しているコードです。たとえば、スレッドの投稿に 15 語が含まれていて、スレッドを削除すると、削除されるのは 15 語であってもエラーが発生し、単語数が負の数ではなくゼロに戻されます。
$threadinfo = fetch_threadinfo($threadid);
$postinfo = fetch_postinfo($threadinfo['firstpostid']);
$userdm =& datamanager_init('User', $this->registry, ERRTYPE_SILENT);
$userdm->set_existing($postinfo);
$userdm->set('totalwords', 'totalwords - ' . str_word_count($postinfo['pagetext']), false);
$userdm->save();
unset($userdm);
誰が私が欠けているものを教えてもらえますか?