From e067c02df73249440afbfb864dec4f5d45413ffd Mon Sep 17 00:00:00 2001 From: daitingting Date: Tue, 25 Feb 2025 05:58:19 +0000 Subject: [PATCH] * [bug#59484,done,1h] Exclude shadow product. --- module/release/control.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/module/release/control.php b/module/release/control.php index 05d282b6f2..a8694713ae 100755 --- a/module/release/control.php +++ b/module/release/control.php @@ -59,7 +59,7 @@ class release extends control { $this->app->loadLang('doc'); - $products = $this->loadModel('product')->getPairs('nodeleted', 0, '', 'all'); + $products = $this->loadModel('product')->getPairs('nodeleted', 0, ''); if(empty($products)) return $this->send(array('result' => 'fail', 'message' => $this->lang->doc->tips->noProduct)); if(!$productID) $productID = key($products);