From 01534604b665f9003eeea2a52969c7d7c50fb4e9 Mon Sep 17 00:00:00 2001 From: LiaoYijun Date: Wed, 16 Jul 2025 09:55:53 +0800 Subject: [PATCH] =?UTF-8?q?perf:=20=E9=98=B2=E6=AD=A2=E8=A7=A6=E5=8F=91=20?= =?UTF-8?q?Google=20=E7=BD=91=E7=BB=9C=E5=9E=83=E5=9C=BE=E6=94=BF=E7=AD=96?= =?UTF-8?q?=E5=8F=AA=E8=BF=94=E5=9B=9E=E5=89=8D=E4=B8=89=E6=9D=A1=EF=BC=8C?= =?UTF-8?q?=E4=BD=86=E5=B8=82=E5=9C=BA=E8=A6=81=E6=B1=82=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E4=BA=94=E6=9D=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/information.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/information.php b/application/controllers/information.php index b2a02c56..d249716d 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -2839,8 +2839,8 @@ class Information extends CI_Controller $city_name_string = $feedback_array[1][$index]; $city_name_list = explode(',', $city_name_string); $feedback_list = $this->Feedback_model->get_feedback_by_city_list($city_name_list, FALSE); - // 防止触发 Google 网络垃圾政策只返回前三条 - $top3_feedback_list = array_slice($feedback_list, 0, 3); + // 防止触发 Google 网络垃圾政策只返回前三条,但市场要求显示五条 + $top3_feedback_list = array_slice($feedback_list, 0, 5); $feedback_content = $this->load->view( 'mobile_first/jh-feedback-list', array('feedback_list' => $top3_feedback_list),