fix wrong method call

This commit is contained in:
Andreas Schamberger 2013-08-23 21:45:09 +02:00
parent 19def707d3
commit f8a80c0361
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ class Curl
curl_setopt($this->ch, CURLOPT_HTTPHEADER, $requestHeaders); curl_setopt($this->ch, CURLOPT_HTTPHEADER, $requestHeaders);
} }
$this->response = $this->execManualRedirect($this->followLocationMaxRedirects); $this->response = $this->execManualRedirect();
return ($this->response === false) ? false : true; return ($this->response === false) ? false : true;
} }