From 9e210dbe9ae565dce3ebf7494038c6ecfbe6a7ba Mon Sep 17 00:00:00 2001 From: LMR <59361885@qq.com> Date: Wed, 1 Jun 2022 12:31:16 +0800 Subject: [PATCH] f --- application/controllers/info_amp.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/controllers/info_amp.php b/application/controllers/info_amp.php index 014e6d84..e3b2b50e 100644 --- a/application/controllers/info_amp.php +++ b/application/controllers/info_amp.php @@ -519,8 +519,9 @@ class Info_amp extends CI_Controller { $json = $this->input->get_post('json'); $icid = $this->input->get_post('icid'); + $action = $this->input->get_post('action') ? '_' . $this->input->get_post('action') : ''; if ($json && $icid) { - $code = $this->Logs_model->backup_meta($icid, $json, 'AMP_HISTORY'); + $code = $this->Logs_model->backup_meta($icid, $json, 'AMP_HISTORY' . $action); echo json_encode(array( "succ" => true, "info" => $this->Logs_model->pick_backup_meta($code)