Skip to content

Commit

Permalink
Update Request.php
Browse files Browse the repository at this point in the history
  • Loading branch information
walkor authored Mar 29, 2022
1 parent 2448a26 commit fb60068
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Protocols/Http/Request.php
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ protected function parseUploadFiles($http_post_boundary)
\array_walk_recursive($result, function(&$value) use ($file) {
$value = $file;
});
$this->_data['files'] = \array_walk_recursive($this->_data['files'], $result);
$this->_data['files'] = \array_merge_recursive($this->_data['files'], $result);
}
if ($post_str) {
parse_str($post_str, $this->_data['post']);
Expand Down

0 comments on commit fb60068

Please sign in to comment.