when i do a standard search it just search for one field type.
$results = $solr->search($query, $offset, $limit);
when i try this:
$params = array('qf' => 'threads.title posts.body');
$results = $solr->search($query, $offset, $limit, $params);
it still doesnt work.
any idea?