Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #680 add getPut/hasPut for \Phalcon\Http\Request #1403

Merged
merged 6 commits into from
Oct 19, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated
  • Loading branch information
dreamsxin committed Oct 19, 2013
commit b6c51b7dd16af169258cbfa3e33a034cea39908a
2 changes: 1 addition & 1 deletion ext/http/request.c
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ PHP_METHOD(Phalcon_Http_Request, getPost){
*<code>
* $userEmail = $request->getPut("user_email");
*
* $userEmail = $request->getPost("user_email", "email");
* $userEmail = $request->getPut("user_email", "email");
*</code>
*
* @param string $name
Expand Down