Skip to content

Commit

Permalink
Merge pull request #688 from skipperbent/v5-development
Browse files Browse the repository at this point in the history
Version 5.4.0.1
  • Loading branch information
skipperbent committed Nov 21, 2023
2 parents e22ea70 + a275366 commit 36dda20
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/Pecee/Http/Input/InputHandler.php
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ public function parseInputs(): void
$this->originalPost += $post;
}
} else {
parse_str($contents, $this->originalPost);
$post = [];
parse_str($contents, $post);
$this->originalPost += $post;
}
}

Expand Down

0 comments on commit 36dda20

Please sign in to comment.