From b9eaff1db57cc9125f6da0d121fce286c2addcd9 Mon Sep 17 00:00:00 2001 From: Jimmy Liow Date: Mon, 25 Dec 2023 15:09:46 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=B5=8B=E8=AF=95=E8=B0=83?= =?UTF-8?q?=E7=94=A8=E6=96=B9=E6=B3=95?= 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 6660152a..2b4e654a 100644 --- a/application/controllers/information.php +++ b/application/controllers/information.php @@ -1258,10 +1258,10 @@ class Information extends CI_Controller public function test_feedback() { - $feedback_newest = $this->Feedback_model->test_feedback_newest(); + $feedback_newest = $this->Feedback_model->get_feedback_newest(); var_dump($feedback_newest); echo '------------------------------------------------------'; - $feedback_newest = $this->Feedback_model->test_feedback_newest(10); + $feedback_newest = $this->Feedback_model->get_feedback_newest(10); var_dump($feedback_newest); }