Skip to content

Commit

Permalink
Merge pull request #2 from DjangoFR/ISSUE-53
Browse files Browse the repository at this point in the history
this commit fixes BeSimple#53 - SoapClient : Proxy does not work
  • Loading branch information
jchr86 authored Jul 12, 2017
2 parents 2ebe3ea + 8e8e650 commit 6a6cae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BeSimple/SoapClient/Curl.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ public function __construct(array $options = array(), $followLocationMaxRedirect

if (isset($options['proxy_host'])) {
if (false !== $options['proxy_host']) {
$proxyHost = $options['proxy_host'].(isset($options['proxy_port']) ? $options['proxy_port'] : 8080);
$proxyHost = $options['proxy_host'].':'.(isset($options['proxy_port']) ? $options['proxy_port'] : 8080);
} else {
$proxyHost = false;
}
Expand Down

0 comments on commit 6a6cae4

Please sign in to comment.