Commit 468e734d authored by Bas de Nooijer's avatar Bas de Nooijer

Merge commit '09379e1e' into develop

Conflicts:
	library/Solarium/QueryType/Select/Query/Query.php
parents 052990cc 09379e1e
......@@ -282,7 +282,11 @@ class Query extends BaseQuery
$query = $this->getHelper()->assemble($query, $bind);
}
return $this->setOption('query', trim($query));
if (!is_null($query)) {
$query = trim($query);
}
return $this->setOption('query', $query);
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment