Fixed page blueprints and theme inheritance issue (#534)

This commit is contained in:
Matias Griese
2016-01-04 15:18:50 +02:00
parent 34045ea62b
commit dc8f2c1466

View File

@@ -103,8 +103,11 @@ class Types implements \ArrayAccess, \Iterator, \Countable
'value' => 'PathName',
];
$list = [];
foreach ((array) $paths as $path) {
return Folder::all($path, $options);
$list += Folder::all($path, $options);
}
return $list;
}
}