From d2224d028581ff38d9bacd6572ca71ba5a4efceb Mon Sep 17 00:00:00 2001 From: LMR <59361885@qq.com> Date: Mon, 23 Mar 2020 10:26:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0history=20meta?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- application/controllers/info_amp.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/application/controllers/info_amp.php b/application/controllers/info_amp.php index bf6541ec..ec192578 100644 --- a/application/controllers/info_amp.php +++ b/application/controllers/info_amp.php @@ -525,7 +525,7 @@ class Info_amp extends CI_Controller public function list_history() { $icid = $this->input->get_post('icid'); if ($icid) { - echo json_encode($this->Logs_model->backup_meta($icid, 'AMP_HISTORY')); + echo json_encode($this->Logs_model->list_backup_meta($icid, 'AMP_HISTORY')); } else { echo 'error'; } @@ -534,7 +534,7 @@ class Info_amp extends CI_Controller public function pick_history() { $log_id = $this->input->get_post('log_id'); if ($log_id) { - echo json_encode($this->Logs_model->backup_meta($log_id)); + echo json_encode($this->Logs_model->pick_backup_meta($log_id)); } else { echo 'error'; }