From f76c917be340bd7b0ac54bf84d45486c4135e9ce Mon Sep 17 00:00:00 2001 From: songliang Date: Mon, 9 Jan 2023 11:43:02 +0800 Subject: [PATCH] ... --- webapp/controller/MarketController.class.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/webapp/controller/MarketController.class.php b/webapp/controller/MarketController.class.php index 1e0b649b..db445dfe 100644 --- a/webapp/controller/MarketController.class.php +++ b/webapp/controller/MarketController.class.php @@ -1223,10 +1223,11 @@ class MarketController extends BaseController { $rows = $conn->execQuery( 'SELECT * FROM t_market_store '. - 'WHERE token_id=:token_id AND owner_address=:owner_address', + 'WHERE token_id=:token_id AND owner_address=:owner_address AND status=:status', array( ':token_id' => $row['token_id'], ':owner_address' => $row['owner_address'], + ':status' => 0, ) );