Skip to content

Commit

Permalink
Merge branch 'hotfix/3.0.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
stmh committed May 19, 2019
2 parents 93d15c8 + 36bf145 commit 17856f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
# Changelog

## 3.0.11 / 2019-05-19

### Fixed

* Fix bug when using inheritsFromBlueprint

## 3.0.10 / 2019-05-19

### Added

* Add new inheritFromBlueprint config, so a host-config can inherit from a blueprinted config

hosts:
local:
inheritFromBlueprint:
Expand Down
4 changes: 2 additions & 2 deletions src/Utilities/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
class Utilities
{

const FALLBACK_VERSION = '3.0.10';
const FALLBACK_VERSION = '3.0.11';

public static function mergeData(array $data, array $override_data): array
{
Expand Down Expand Up @@ -116,7 +116,7 @@ public static function isAssocArray($arr)

public static function prependRootFolder($rootFolder, $subfolder)
{
if (strpos($rootFolder, $subfolder) === false) {
if (strpos($subfolder, $rootFolder) === false) {
return $rootFolder . $subfolder;
}

Expand Down

0 comments on commit 17856f1

Please sign in to comment.