Setup Module (finish.phtml): Add empty array if $report is null

This commit is contained in:
Sukhwinder Dhillon 2023-08-16 12:54:40 +02:00 committed by raviks789
parent 6f04c54f3c
commit 5d5b767afe
1 changed files with 1 additions and 1 deletions

View File

@ -30,5 +30,5 @@
</div>
<pre class="log-output"><?= join("\n\n", array_map(function($a) {
return join("\n", $a);
}, $report)); ?></pre>
}, $report ?? [])); ?></pre>
</div>