Skip to content

Commit

Permalink
Add handling for raw post data
Browse files Browse the repository at this point in the history
  • Loading branch information
Ivan Kerin committed Jul 30, 2013
1 parent 437b967 commit ba32987
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public function execute($method, $url, array $post = array())

$this->_request = \Request::factory($url)
->method($method)
->post($post);
->post($post)
->body(http_build_query($post));

\Request::$initial = $this->_request;

Expand Down

0 comments on commit ba32987

Please sign in to comment.