[CAT] Fixed a user_id bug when updating the radio entry.

这个提交包含在:
Andreas 2021-12-12 09:36:33 +01:00
父节点 e044da8df0
当前提交 97e4f6bfe2

查看文件

@ -41,7 +41,7 @@
);
$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);
}
}