kopia lustrzana https://github.com/nextcloud/social
[PHP 8.4] Fix: Curl `CURLOPT_BINARYTRANSFER` deprecated
The `CURLOPT_BINARYTRANSFER` PHP constant from the Curl extension was no-op since
PHP 5.1, and is deprecated in PHP 8.4. This removes the constant usage to avoid
the deprecation notice in PHP 8.4 and later.
Because this constant was no-op since PHP 5.1 (circa 2005), this change has no
impact.
See:
- [PHP.Watch - PHP 8.4 - Curl: CURLOPT_BINARYTRANSFER deprecated](https://php.watch/versions/8.4/CURLOPT_BINARYTRANSFER-deprecated)
- [commit](fc16285538
)
Signed-off-by: Ayesh Karunaratne <ayesh@aye.sh>
pull/1879/head
rodzic
c78d7d5122
commit
4608f868f8
|
@ -377,7 +377,6 @@ class CurlService {
|
|||
curl_setopt($curl, CURLOPT_TIMEOUT, $request->getTimeout());
|
||||
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($curl, CURLOPT_BINARYTRANSFER, $request->isBinary());
|
||||
|
||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $request->isVerifyPeer());
|
||||
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, $request->isFollowLocation());
|
||||
|
|
|
@ -114,7 +114,6 @@ trait TRequest {
|
|||
curl_setopt($curl, CURLOPT_TIMEOUT, $request->getTimeout());
|
||||
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
|
||||
curl_setopt($curl, CURLOPT_BINARYTRANSFER, $request->isBinary());
|
||||
|
||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $request->isVerifyPeer());
|
||||
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, $request->isFollowLocation());
|
||||
|
|
Ładowanie…
Reference in New Issue