Fixed PHP7.4 Warning

This commit is contained in:
Andreas Österreicher
2024-04-08 12:54:05 +02:00
parent 257c7a5aac
commit 8a9477eaf0
+1 -1
View File
@@ -48,7 +48,7 @@ foreach ($cj->result as $cronjob)
if($cronjob->execute())
{
echo "\n".date('d.m.Y H:i:s').' '.$cronjob->titel.'('.$cronjob->cronjob_id.') executed<br>'."\n";
echo implode($cronjob->output,"\n");
echo implode("\n",$cronjob->output);
}
else
{