mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-31 22:00:23 +02:00
[core] Merge GET and POST args into request array (#3155)
This commit is contained in:
@@ -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 {
|
||||||
|
Reference in New Issue
Block a user