From d96bfeb57c3c7cb709ba8dda96ea01456be1a310 Mon Sep 17 00:00:00 2001 From: tianshujie Date: Tue, 30 Jan 2024 13:35:45 +0800 Subject: [PATCH] * Fix bug #45551. --- module/execution/model.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/model.php b/module/execution/model.php index 661f57a126..4a3cb4333b 100755 --- a/module/execution/model.php +++ b/module/execution/model.php @@ -231,7 +231,7 @@ class executionModel extends model } /* Save session. */ - $this->executionTao->saveSession($executionID); + $this->executionTao->saveSession((int)$executionID); /* Return execution id. */ return $executionID;