From 11b0bf7db851cd059c8f824231854dbe3003e15e Mon Sep 17 00:00:00 2001 From: hvlad Date: Fri, 3 Jun 2016 01:00:16 +0300 Subject: [PATCH] Improvement CORE-5257 : Enable nested keys in plugin configuration --- src/common/config/config_file.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/config/config_file.cpp b/src/common/config/config_file.cpp index 0e66fd78c0..8a4344c0e7 100644 --- a/src/common/config/config_file.cpp +++ b/src/common/config/config_file.cpp @@ -665,7 +665,7 @@ void ConfigFile::parse(Stream* stream) } previous->sub = FB_NEW_POOL(getPool()) - ConfigFile(getPool(), &subStream, flags & ~HAS_SUB_CONF); + ConfigFile(getPool(), &subStream, flags); } break; }