1
0
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:
Eugene Molotov
2022-11-20 16:41:20 +05:00
committed by GitHub
parent 745a7ba122
commit 8990aeb9f4

View File

@@ -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 {