Kohana v3.3.2

This commit is contained in:
Deon George
2014-09-06 23:43:07 +10:00
parent f96694b18f
commit 8888719653
236 changed files with 1685 additions and 996 deletions

View File

@@ -104,6 +104,12 @@ class Kohana_Request_Client_Internal extends Request_Client {
}
catch (HTTP_Exception $e)
{
// Store the request context in the Exception
if ($e->request() === NULL)
{
$e->request($request);
}
// Get the response via the Exception
$response = $e->get_response();
}
@@ -125,4 +131,5 @@ class Kohana_Request_Client_Internal extends Request_Client {
// Return the response
return $response;
}
} // End Kohana_Request_Client_Internal
}