mirror of
https://github.com/skipperbent/simple-php-router.git
synced 2026-06-13 09:13:17 +03:00
Fixed inputhandler overwriting post-values
This commit is contained in:
@@ -83,7 +83,9 @@ class InputHandler
|
||||
$this->originalPost += $post;
|
||||
}
|
||||
} else {
|
||||
parse_str($contents, $this->originalPost);
|
||||
$post = [];
|
||||
parse_str($contents, $post);
|
||||
$this->originalPost += $post;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user