From 07318bdf90a24a97e2bcd7f0271d4d5a3a2c86ab Mon Sep 17 00:00:00 2001 From: Technosophos Date: Fri, 26 Oct 2012 15:47:44 -0500 Subject: [PATCH] Fixed CURLOPT_PROXYUSERPWD --- src/HPCloud/Transport/CURLTransport.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/HPCloud/Transport/CURLTransport.php b/src/HPCloud/Transport/CURLTransport.php index ad5f569..387b202 100644 --- a/src/HPCloud/Transport/CURLTransport.php +++ b/src/HPCloud/Transport/CURLTransport.php @@ -233,7 +233,7 @@ class CURLTransport implements Transporter { 'proxy.auth' => CURLOPT_PROXYAUTH, 'proxy.port' => CURLOPT_PROXYPORT, 'proxy.type' => CURLOPT_PROXYTYPE, - 'proxy.userpwd' => CURLOPT_USERPWD, + 'proxy.userpwd' => CURLOPT_PROXYUSERPWD, ); foreach ($proxyMap as $conf => $opt) { if (Bootstrap::hasConfig($conf)) {