mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-03-14 20:21:14 +03:00
[core] Merge GET and POST args into request array (#3155)
This commit is contained in:
parent
745a7ba122
commit
8990aeb9f4
1 changed files with 1 additions and 1 deletions
|
@ -8,7 +8,7 @@ final class RssBridge
|
|||
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
||||
$request = $cliArgs;
|
||||
} else {
|
||||
$request = $_GET;
|
||||
$request = array_merge($_GET, $_POST);
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue