Update to Drupal 8.0.1. For more information, see https://www.drupal.org/node/2627402
This commit is contained in:
parent
013aaaf2ff
commit
1a0e9d9fac
153 changed files with 1268 additions and 670 deletions
|
@ -52,7 +52,7 @@ class StreamWrapperManager extends ContainerAware implements StreamWrapperManage
|
|||
if (isset($this->wrappers[$filter])) {
|
||||
return $this->wrappers[$filter];
|
||||
}
|
||||
else if (isset($this->wrappers[StreamWrapperInterface::ALL])) {
|
||||
elseif (isset($this->wrappers[StreamWrapperInterface::ALL])) {
|
||||
$this->wrappers[$filter] = array();
|
||||
foreach ($this->wrappers[StreamWrapperInterface::ALL] as $scheme => $info) {
|
||||
// Bit-wise filter.
|
||||
|
|
Reference in a new issue