From ac2966939622b9586efd4cd085ec16f5222cf1ac Mon Sep 17 00:00:00 2001 From: liumengyi Date: Mon, 20 Nov 2023 14:04:12 +0800 Subject: [PATCH] * Fix bug, load product model. --- module/execution/zen.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/execution/zen.php b/module/execution/zen.php index 1d1e73b03e..f724d59c64 100644 --- a/module/execution/zen.php +++ b/module/execution/zen.php @@ -404,7 +404,7 @@ class executionZen extends execution $this->view->title = $this->lang->execution->testcase; $this->view->executionID = $executionID; $this->view->productID = $productID; - $this->view->product = $this->product->getByID((int) $productID); + $this->view->product = $this->loadModel('product')->getByID((int)$productID); $this->view->orderBy = $orderBy; $this->view->pager = $pager; $this->view->type = $type;