Skip to content
Snippets Groups Projects
Commit 3ae2841f authored by Torsten Oppermann's avatar Torsten Oppermann
Browse files

[TASK] review

parent 7237532e
No related branches found
No related tags found
1 merge request!10Feature improved usability
......@@ -925,7 +925,7 @@ class MailTemplateService {
$allMarker .= $key . ': ' . $value . PHP_EOL;
} elseif (\is_array($value)) {
foreach ($value as $innerKey => $innerValue) {
$allMarker .= $innerKey . ': ' . $innerValue . PHP_EOL;
$allMarker .= $key . '.' . $innerKey . ': ' . $innerValue . PHP_EOL;
}
} elseif (\is_bool($value)) {
$valueAsString = $value ? 'true' : 'false';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment