Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
3cf80cd2
Commit
3cf80cd2
authored
Nov 04, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/postbigrequest
parents
8b5862f4
37958ce7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
library/Solarium/Client/Request.php
library/Solarium/Client/Request.php
+11
-1
No files found.
library/Solarium/Client/Request.php
View file @
3cf80cd2
...
@@ -362,6 +362,16 @@ class Solarium_Client_Request extends Solarium_Configurable
...
@@ -362,6 +362,16 @@ class Solarium_Client_Request extends Solarium_Configurable
* @return string
* @return string
*/
*/
public
function
getUri
()
public
function
getUri
()
{
return
$this
->
getHandler
()
.
'?'
.
$this
->
getQueryString
();
}
/**
* Get the query string for this request
*
* @return string
*/
public
function
getQueryString
()
{
{
$queryString
=
''
;
$queryString
=
''
;
if
(
count
(
$this
->
_params
)
>
0
)
{
if
(
count
(
$this
->
_params
)
>
0
)
{
...
@@ -373,6 +383,6 @@ class Solarium_Client_Request extends Solarium_Configurable
...
@@ -373,6 +383,6 @@ class Solarium_Client_Request extends Solarium_Configurable
);
);
}
}
return
$
this
->
getHandler
()
.
'?'
.
$
queryString
;
return
$queryString
;
}
}
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment