diff --git a/CHANGELOG.md b/CHANGELOG.md index ee062db54..8098bb631 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/system/src/Grav/Common/Config/Setup.php b/system/src/Grav/Common/Config/Setup.php index 6a4d336bb..0015657b1 100644 --- a/system/src/Grav/Common/Config/Setup.php +++ b/system/src/Grav/Common/Config/Setup.php @@ -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' => [