Fixing Network::post() caused by wrong argument

pull/7248/head
Philipp Holzer 2019-06-10 19:12:00 +02:00
rodzic 9491c63934
commit 7c54edd4b4
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D8365C3D36B77D90
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -209,7 +209,7 @@ function dfrn_confirm_post(App $a, $handsfree = null)
*
*/
$res = Network::post($dfrn_confirm, $params, null, 120)->getBody();
$res = Network::post($dfrn_confirm, $params, [], 120)->getBody();
Logger::log(' Confirm: received data: ' . $res, Logger::DATA);

Wyświetl plik

@ -250,7 +250,7 @@ class Network
* @return CurlResult The content
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public static function post(string $url, $params, $headers = null, int $timeout = 0, int &$redirects = 0)
public static function post(string $url, $params, array $headers = [], int $timeout = 0, int &$redirects = 0)
{
$stamp1 = microtime(true);
@ -286,7 +286,7 @@ class Network
}
if (defined('LIGHTTPD')) {
if (!is_array($headers)) {
if (empty($headers)) {
$headers = ['Expect:'];
} else {
if (!in_array('Expect:', $headers)) {
@ -295,7 +295,7 @@ class Network
}
}
if ($headers) {
if (!empty($headers)) {
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
}