From 58285753ed54ca4b11066d43a8ee2306c4d2a91c Mon Sep 17 00:00:00 2001 From: Dave Mc Nicoll Date: Thu, 30 Mar 2023 18:26:17 +0000 Subject: [PATCH] - Fixed KEYS format for header manipulation in .env --- skeleton/meta/config.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/skeleton/meta/config.php b/skeleton/meta/config.php index a80eff1..99fbb40 100644 --- a/skeleton/meta/config.php +++ b/skeleton/meta/config.php @@ -10,12 +10,7 @@ return [ ], 'keys' => (function() { - foreach(explode(',', getenv('KEYS') ?? "") as $item) { - list($var, $value) = explode(":", trim($item)); - $list[$var] = $value; - } - - return $list; + return explode(',', getenv('KEYS') ?? "") ; })(), 'meta' => [