Backwards compatibility to php 7

This commit is contained in:
Daniel Winzen
2020-10-25 19:12:47 +01:00
parent 095685aa77
commit ae65728581
2 changed files with 2 additions and 2 deletions

View File

@ -151,7 +151,7 @@ function is_definitely_ssl() : bool {
return false;
}
function set_curl_options(CurlHandle $ch){
function set_curl_options($ch){
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_USERAGENT, USERAGENT);