diff --git a/src/config/GlobalConfig.php b/src/config/GlobalConfig.php index 1ad71e2b..19b4f231 100644 --- a/src/config/GlobalConfig.php +++ b/src/config/GlobalConfig.php @@ -181,6 +181,9 @@ function($matches) use ($vars, $line) { } return $vars[$matches[1]]; }, $value); + if (preg_match('/\${(.*?)}/', $result)) { + $result = $this->resolveValue($result, $vars, $line); + } return $result; }