From 5cfcb7b361f828afe526c59b2ac668de38954d26 Mon Sep 17 00:00:00 2001 From: songliang Date: Fri, 7 Jul 2023 17:58:21 +0800 Subject: [PATCH] ... --- webapp/controller/MarketController.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webapp/controller/MarketController.class.php b/webapp/controller/MarketController.class.php index 59e15331..2c09ad72 100644 --- a/webapp/controller/MarketController.class.php +++ b/webapp/controller/MarketController.class.php @@ -816,12 +816,14 @@ class MarketController extends BaseAuthedController }; $search_filter_fn = function ($f) { $str = ''; + error_log('search_filter ' . json_encode($f)); $arr_options = array(); foreach ($f as $v) { if (!empty($v)) { array_push($arr_options, 'c_name=\'' . $v . '\' OR token_id=\'' . $v . '\' '); } } + error_log('$$search_filter ' . json_encode($arr_options)); if (count($arr_options) > 0) { $str = implode('OR ', $arr_options); $str = 'AND (' . $str . ') ';