[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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

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