From 669dfed3d28ca6ab0be0f385c7e2102d004ac49c Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 14 Feb 2017 23:26:54 +0100 Subject: [PATCH] Fixing set (allowing overwrite) --- Module/InfoManager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Module/InfoManager.php b/Module/InfoManager.php index 55bbaaca1..e33e47e5b 100644 --- a/Module/InfoManager.php +++ b/Module/InfoManager.php @@ -115,7 +115,7 @@ class InfoManager throw new \InvalidArgumentException('Type of $data "' . gettype($data) . '" is not supported.'); } - ArrayUtils::setArray($path, $this->info, $data, $delim); + ArrayUtils::setArray($path, $this->info, $data, $delim, true); } /**