Skip to content
This repository has been archived by the owner on Jan 24, 2024. It is now read-only.

Commit

Permalink
PHP 7.4 compatibility implode
Browse files Browse the repository at this point in the history
  • Loading branch information
superfaktura authored Feb 20, 2020
1 parent 12dbef4 commit 8ce9e9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SFAPIclient/Requests/Transport/fsockopen.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public function request($url, $headers = array(), $data = array(), $options = ar
}

$headers = Requests::flattern($headers);
$out .= implode("\r\n", $headers) . "\r\n";
$out .= implode("\r\n", $headers);


$options['hooks']->dispatch('fsockopen.after_headers', array(&$out));
Expand Down

0 comments on commit 8ce9e9d

Please sign in to comment.