1
0
Fork 0

Merge pull request #1850 from bitExpert/fix/recursive_get

Fix for recursion problem with wrong http basic auth credentials
pull/1856/head
Jordi Boggiano 2013-05-02 07:41:58 -07:00
commit 7687d189e3
1 changed files with 2 additions and 1 deletions

View File

@ -112,6 +112,7 @@ class RemoteFilesystem
$errorMessage = '';
$errorCode = 0;
$result = false;
set_error_handler(function ($code, $msg) use (&$errorMessage) {
if ($errorMessage) {
$errorMessage .= "\n";
@ -188,7 +189,7 @@ class RemoteFilesystem
if ($this->retry) {
$this->retry = false;
return $this->get($this->originUrl, $this->fileUrl, $this->fileName, $this->progress);
return $this->get($this->originUrl, $this->fileUrl, $additionalOptions, $this->fileName, $this->progress);
}
if (false === $result) {