Skip to content

Commit

Permalink
fixing multidomina tool
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Wojczal committed Oct 8, 2024
1 parent 521bad1 commit 7100f60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion multidomain-tool/src/variables.php
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 7100f60

Please sign in to comment.