Commit 9a5bc481 authored by Bas de Nooijer's avatar Bas de Nooijer

Merge branch 'post_select' of https://github.com/danielholmes/solarium into pr47

Conflicts:
	library/Solarium/Client/Request.php
parents e66a414c cbe2f2f3
......@@ -362,6 +362,18 @@ class Solarium_Client_Request extends Solarium_Configurable
* @return string
*/
public function getUri()
{
$queryString = $this->getQueryString();
return $this->getHandler() . '?' . $queryString;
}
/**
* Get the query string for this request
*
* @return string
*/
public function getQueryString()
{
$queryString = '';
if (count($this->_params) > 0) {
......
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