From dd90e1548d48fb9339e59bb92bba881fe2262207 Mon Sep 17 00:00:00 2001 From: "Christopher A. Stelma" Date: Wed, 9 Dec 2015 13:58:20 -0800 Subject: [PATCH] change order in instantiation, too. --- library/Requests/Transport/cURL.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/Requests/Transport/cURL.php b/library/Requests/Transport/cURL.php index cc1a66fca..ff3fb3d76 100755 --- a/library/Requests/Transport/cURL.php +++ b/library/Requests/Transport/cURL.php @@ -234,8 +234,8 @@ public function request_multiple($requests, $options) { //get error string for handle. $reason = curl_error($done['handle']); $exception = new Requests_Exception_Transport_cURL( - Requests_Exception_Transport_cURL::EASY, $reason, + Requests_Exception_Transport_cURL::EASY, $done['handle'], $done['result'] );