Merge pull request #1298 from Werzi2001/version_2_station_create_set_user

set user_id on station location create
pull/1305/head
Peter Goodhall 2021-11-16 13:59:04 +00:00 zatwierdzone przez GitHub
commit 68a9d237d7
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 0 usunięć

Wyświetl plik

@ -52,6 +52,7 @@ class Stations extends CI_Model {
function add() {
// Create data array with field values
$data = array(
'user_id' => $this->session->userdata('user_id'),
'station_profile_name' => xss_clean($this->input->post('station_profile_name', true)),
'station_gridsquare' => xss_clean(strtoupper($this->input->post('gridsquare', true))),
'station_city' => xss_clean($this->input->post('city', true)),