Use array_replace_recursive() instead of array_merge_recursive()

main
Sander Marechal 12 years ago
parent 11b5b5944d
commit 0d9e08f9af

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

Loading…
Cancel
Save