phpbb\search\fulltext_sphinx::index_remove PHP Method

index_remove() public method

Delete a post from the index after it was deleted
public index_remove ( $post_ids, $author_ids, $forum_ids )
    public function index_remove($post_ids, $author_ids, $forum_ids)
    {
        $values = array();
        foreach ($post_ids as $post_id) {
            $values[$post_id] = array(1);
        }
        $this->sphinx->UpdateAttributes($this->indexes, array('deleted'), $values);
    }