Skip to content

Commit

Permalink
Merge pull request #84 from OHB/master
Browse files Browse the repository at this point in the history
add charset=utf-8 for getNodes() curl call
  • Loading branch information
lsmith77 committed May 24, 2014
2 parents e3b03f2 + a6b0aeb commit 4d07f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Jackalope/Transport/Jackrabbit/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ public function getNodes($paths, $query = ':include')

$request = $this->getRequest(Request::POST, $url);
$request->setBody($body);
$request->setContentType('application/x-www-form-urlencoded');
$request->setContentType('application/x-www-form-urlencoded; charset=utf-8');

try {
$data = $request->executeJson();
Expand Down

0 comments on commit 4d07f47

Please sign in to comment.