/**
  * @see	\wcf\system\comment\manager\ICommentManager::updateCounter()
  */
 public function updateCounter($objectID, $value)
 {
     $entry = new ModerationQueue($objectID);
     $editor = new ModerationQueueEditor($entry);
     $editor->updateCounters(array('comments' => $value));
     $editor->update(array('lastChangeTime' => TIME_NOW));
 }