Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Revert "Merge branch 'livedocx-2.0' of http://github.com/jonathanmaro…
Browse files Browse the repository at this point in the history
…n/zf2 into merges/jonathanmaron-livedocx"

This reverts commit 239626850ab598a70f0b6008bdeb002c6f81a39f, reversing
changes made to 3addea5bec77bafc51fa1a9605a1c31a10f442f8.
  • Loading branch information
weierophinney committed Nov 2, 2010
2 parents 017beb6 + 9bb6b33 commit 916cd80
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -962,11 +962,10 @@ public function getLastMethod()
public function _doRequest(Client\Common $client, $request, $location, $action, $version, $one_way = null)
{
// Perform request as is
if ($one_way == null) {
return call_user_func(array($client,'SoapClient::__doRequest'), $request, $location, $action, $version);
} else {
return call_user_func(array($client,'SoapClient::__doRequest'), $request, $location, $action, $version, $one_way);
if ($one_way === null) {
return $client->__doRequest($request, $location, $action, $version);
}
return $client->__doRequest($request, $location, $action, $version, $one_way);
}

/**
Expand Down

0 comments on commit 916cd80

Please sign in to comment.