From 31c3a64246a90af078a9e25267f6ac2dbc1e078a Mon Sep 17 00:00:00 2001 From: Lionel Date: Fri, 6 Oct 2023 15:48:19 +0200 Subject: [PATCH] Fix a missing parameter in call to Log::create( ) --- lib/Skeleton/Transaction/Transaction.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Skeleton/Transaction/Transaction.php b/lib/Skeleton/Transaction/Transaction.php index 9698603..77b093d 100644 --- a/lib/Skeleton/Transaction/Transaction.php +++ b/lib/Skeleton/Transaction/Transaction.php @@ -229,7 +229,7 @@ public function mark_failed($output, $exception, $date = null) { * @param string $date */ public function mark_completed($output, $date = null) { - Log::create($this, false, $output, $date); + Log::create($this, false, $output, null, $date); // Don't mark this transaction as completed if it has been rescheduled. if ($this->rescheduled) {