mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-09 16:38:50 +00:00
[core] Merge GET and POST args into request array (#3155)
This commit is contained in:
parent
745a7ba122
commit
8990aeb9f4
@ -8,7 +8,7 @@ final class RssBridge
|
|||||||
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
||||||
$request = $cliArgs;
|
$request = $cliArgs;
|
||||||
} else {
|
} else {
|
||||||
$request = $_GET;
|
$request = array_merge($_GET, $_POST);
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user