From c58e4d681fd69fe11d2e2c165873248299cedf50 Mon Sep 17 00:00:00 2001 From: caoyanyi Date: Thu, 6 Jul 2023 09:36:23 +0800 Subject: [PATCH] * Change feedback list get. --- api/v1/entries/feedbacks.php | 1 + 1 file changed, 1 insertion(+) diff --git a/api/v1/entries/feedbacks.php b/api/v1/entries/feedbacks.php index f45b40e94f..5ae758cd11 100644 --- a/api/v1/entries/feedbacks.php +++ b/api/v1/entries/feedbacks.php @@ -21,6 +21,7 @@ class feedbacksEntry extends entry { if(strpos(strtolower($this->param('fields')), 'moduleandproduct') !== false) return $this->getModuleAndProduct(); + $this->app->session->set('feedbackProduct', 'all'); $control = $this->loadController('feedback', 'admin'); $control->admin($this->param('status', 'unclosed'), 0, $this->param('orderBy', 'id_desc'), 0, $this->param('limit', 20), $this->param('page', 1)); $data = $this->getData();