Skip to content

Commit

Permalink
Fixed a bug with PHP Strict Standards throwing an error about the
Browse files Browse the repository at this point in the history
number of paramaters in the doRequest function.

Added an extra paramater so that the paramater count is the same
as the SoapClient class it extends.
  • Loading branch information
Dan Dawson committed Jun 19, 2013
1 parent 129eb4c commit 0a684fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ET_Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ function GetLastModifiedDate($remotepath) {

}

function __doRequest($request, $location, $saction, $version) {
function __doRequest($request, $location, $saction, $version, $oneWay = null) {
$doc = new DOMDocument();
$doc->loadXML($request);

Expand Down

0 comments on commit 0a684fb

Please sign in to comment.