当我试图删除 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);
有人能告诉我我错过了什么吗?