From 54bd83ecfc9bac51fa1d442d39d7a69ee216d024 Mon Sep 17 00:00:00 2001 From: wanghousheng Date: Mon, 15 Jul 2024 20:42:11 +0800 Subject: [PATCH] 1 --- app/api/controller/Article.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/app/api/controller/Article.php b/app/api/controller/Article.php index 359a7d8b..0c8fc9ab 100644 --- a/app/api/controller/Article.php +++ b/app/api/controller/Article.php @@ -38,8 +38,6 @@ class Article extends Controller $model = new ArticleModel; $title = (string)$this->request->param('title'); $list = $model->getList($categoryId, 15, $title); - - return $this->renderSuccess(compact('list')); }