From 87dc1f54bd1cb6bf17354b8d8f33a393fddf0349 Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Wed, 16 Aug 2017 19:23:22 +0200 Subject: use normalized url instead of rawurl also for request_curl (so default protocol gets added) --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_url.class b/it_url.class index 608e6b7..8b2ef51 100644 --- a/it_url.class +++ b/it_url.class @@ -348,7 +348,7 @@ function request_curl($p=array()) $p['headers'] = (array)$p['headers'] + self::_default_headers($url, $p); $opts = array(CURLOPT_FOLLOWLOCATION => false, CURLOPT_HEADER => 1) + self::curl_opts($p + array('user' => $this->user, 'pass' => $this->pass)); - $curl = curl_init($url->rawurl); + $curl = curl_init($url->url); curl_setopt_array($curl, $opts); $got = curl_exec($curl); -- cgit v1.2.3