Skip to content

Commit

Permalink
FIX, when a base query is set to nothing, it should be doing a select…
Browse files Browse the repository at this point in the history
… all.
  • Loading branch information
Nathan Glasl committed Sep 7, 2017
1 parent 06e3571 commit d5a0352
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion code/service/querybuilders/SolrQueryBuilder.php
Expand Up @@ -66,7 +66,7 @@ class SolrQueryBuilder {
protected $facetCount = 1;

public function baseQuery($query) {
$this->userQuery = $query;
$this->userQuery = $query ?: '*:*';
return $this;
}

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Expand Up @@ -18,7 +18,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "5.3.x-dev"
"dev-master": "6.0.x-dev"
}
}
}

0 comments on commit d5a0352

Please sign in to comment.