Merge pull request #1326 from AndreasK79/cat_fix

[CAT] Fixed a user_id bug when updating the radio entry.
pull/1340/head
Andreas Kristiansen 2021-12-12 09:37:43 +01:00 zatwierdzone przez GitHub
commit 60c8575caa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

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