mirror of
https://github.com/Icinga/icingaweb2-module-director.git
synced 2025-07-29 00:34:05 +02:00
StartupLogRenderer
: Use correct syntax to write to array $lines
This commit is contained in:
parent
fcaa97e1b2
commit
9cc04eb5c6
@ -83,9 +83,9 @@ class StartupLogRenderer implements ValidHtml
|
|||||||
}
|
}
|
||||||
|
|
||||||
if ($time === null) {
|
if ($time === null) {
|
||||||
$lines[] .= $line;
|
$lines[] = $line;
|
||||||
} else {
|
} else {
|
||||||
$lines[] .= "[$time] $line";
|
$lines[] = "[$time] $line";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return implode("\n", $lines);
|
return implode("\n", $lines);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user