Skip to content

Commit 00855dc

Browse files
committed
fixed issue with multipart/form-data
read from request intead of post
1 parent ef96e54 commit 00855dc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Request.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public function __construct($args = []) {
3434
// } elseif ($_SERVER['CONTENT_TYPE'] === 'application/x-www-form-urlencoded') {
3535
} else {
3636
$this->_properties = $_POST;
37+
$this->_properties = $_REQUEST;
3738
}
3839
break;
3940

0 commit comments

Comments
 (0)