From b605da7e3712e84e8d8bc929067d41afb910bdce Mon Sep 17 00:00:00 2001 From: sunguangming Date: Mon, 22 Jan 2024 16:35:05 +0800 Subject: [PATCH] * Fix bug #44625. --- 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 a40b5f5433..f24e419a08 100644 --- a/module/execution/zen.php +++ b/module/execution/zen.php @@ -856,9 +856,9 @@ class executionZen extends execution return false; } - $_POST['products'] = array_filter($_POST['products']); if(!empty($_POST['products'])) { + $_POST['products'] = array_filter($_POST['products']); $this->app->loadLang('project'); $multipleProducts = $this->loadModel('product')->getMultiBranchPairs(); foreach($_POST['products'] as $index => $productID)