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

This commit is contained in:
Andreas
2021-12-12 09:36:33 +01:00
parent e044da8df0
commit 97e4f6bfe2

View File

@@ -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);
}
}