From ad759c48265c7ac0cc5f17ef526cccec78d0cafc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20FRANCE?= Date: Sat, 10 Feb 2024 17:25:43 +0100 Subject: [PATCH] fix warnings (#28103) --- htdocs/core/boxes/box_scheduled_jobs.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/htdocs/core/boxes/box_scheduled_jobs.php b/htdocs/core/boxes/box_scheduled_jobs.php index 594ef9261e6..6bcb71d5311 100644 --- a/htdocs/core/boxes/box_scheduled_jobs.php +++ b/htdocs/core/boxes/box_scheduled_jobs.php @@ -101,6 +101,8 @@ class box_scheduled_jobs extends ModeleBoxes $cronstatic->ref = $objp->rowid; $cronstatic->label = $langs->trans($objp->label); $cronstatic->status = $objp->status; + $cronstatic->processing = $objp->processing; + $cronstatic->lastresult = $objp->lastresult ?? ''; $cronstatic->datenextrun = $this->db->jdate($objp->datenextrun); $cronstatic->datelastrun = $this->db->jdate($objp->datelastrun); }