Merge pull request #1326 from AndreasK79/cat_fix

[CAT] Fixed a user_id bug when updating the radio entry.
这个提交包含在:
Andreas Kristiansen 2021-12-12 09:37:43 +01:00 提交者 GitHub
当前提交 60c8575caa
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -41,7 +41,7 @@
); );
$this->db->where('id', $radio_id); $this->db->where('id', $radio_id);
$this->db->where('user_id', $this->session->userdata('user_id')); $this->db->where('user_id', $user_id);
$this->db->update('cat', $data); $this->db->update('cat', $data);
} }
} }