Fixed hardcoded system folder in blueprints, config and language streams

This commit is contained in:
Matias Griese 2020-10-14 10:37:59 +03:00
parent b375a543ec
commit fb3efba204
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
# v1.6.27
## mm/dd/2020
1. [](#bugfix)
* Fixed hardcoded system folder in blueprints, config and language streams
# v1.6.28
## 10/07/2020

View File

@ -59,13 +59,13 @@ class Setup extends Data
'blueprints' => [
'type' => 'ReadOnlyStream',
'prefixes' => [
'' => ['environment://blueprints', 'user://blueprints', 'system/blueprints'],
'' => ['environment://blueprints', 'user://blueprints', 'system://blueprints'],
]
],
'config' => [
'type' => 'ReadOnlyStream',
'prefixes' => [
'' => ['environment://config', 'user://config', 'system/config'],
'' => ['environment://config', 'user://config', 'system://config'],
]
],
'plugins' => [
@ -89,7 +89,7 @@ class Setup extends Data
'languages' => [
'type' => 'ReadOnlyStream',
'prefixes' => [
'' => ['environment://languages', 'user://languages', 'system/languages'],
'' => ['environment://languages', 'user://languages', 'system://languages'],
]
],
'cache' => [