Upstream Update: Fix for CURLOPTS
This commit is contained in:
parent
65e62340c9
commit
cb18209369
@ -293,7 +293,7 @@ class Kohana_Request_Client_External extends Request_Client {
|
||||
$options[CURLOPT_RETURNTRANSFER] = TRUE;
|
||||
|
||||
// Apply any additional options set to Request_Client_External::$_options
|
||||
$options += $this->_options;
|
||||
$options = Arr::merge($options, $this->_options);
|
||||
|
||||
$uri = $request->uri();
|
||||
|
||||
@ -424,4 +424,4 @@ class Kohana_Request_Client_External extends Request_Client {
|
||||
|
||||
return $response;
|
||||
}
|
||||
} // End Kohana_Request_Client_External
|
||||
} // End Kohana_Request_Client_External
|
||||
|
Reference in New Issue
Block a user