phpbb\search\fulltext_sphinx::author_search PHP Method

    public function author_search($type, $firstpost_only, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, &$id_ary, $start, $per_page)
    {
        $this->search_query = '';
        $this->sphinx->SetMatchMode(SPH_MATCH_FULLSCAN);
        $fields = $firstpost_only ? 'firstpost' : 'all';
        $terms = 'all';
        return $this->keyword_search($type, $fields, $terms, $sort_by_sql, $sort_key, $sort_dir, $sort_days, $ex_fid_ary, $post_visibility, $topic_id, $author_ary, $author_name, $id_ary, $start, $per_page);
    }