1
0
Fork 0

Use array_replace_recursive() instead of array_merge_recursive()

pull/1177/head
Sander Marechal 2012-10-03 18:54:27 +02:00
parent 11b5b5944d
commit 0d9e08f9af
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,7 @@ class RemoteFilesystem
$options['http']['header'] .= "Authorization: Basic $authStr\r\n";
}
$options = array_merge_recursive($options, $this->options);
$options = array_replace_recursive($options, $this->options);
return $options;
}