Skip to content

Commit

Permalink
Merge pull request #349 from EscolaLMS/feature/fixing_multi-domain-tool
Browse files Browse the repository at this point in the history
fixing multidomina tool
  • Loading branch information
qunabu authored Oct 8, 2024
2 parents 521bad1 + 7100f60 commit 6af8633
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 6af8633

Please sign in to comment.