From 7100f604a318368fc9efc0cf49f57705432c6c83 Mon Sep 17 00:00:00 2001 From: Mateusz Wojczal Date: Tue, 8 Oct 2024 20:52:03 +0200 Subject: [PATCH] fixing multidomina tool --- multidomain-tool/src/variables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/multidomain-tool/src/variables.php b/multidomain-tool/src/variables.php index 71dd3a3..e49498c 100644 --- a/multidomain-tool/src/variables.php +++ b/multidomain-tool/src/variables.php @@ -41,7 +41,7 @@ public static function listDomainVariables(string $domain_key, array $vars): arr { $output = []; foreach ($vars as $key => $value) { - $output[$domain_key . "_" . $key] = $domain_key . "_" . $key . '=' . $value; + $output[$domain_key . "_" . $key] = $domain_key . "_" . $key . ' : ' . $value; } return $output; }