You can now edit the QSO and change the OPERATOR callsign if its not the one in the login account

pull/366/head
Peter Goodhall 2019-10-06 16:08:11 +01:00
rodzic a2f8947ba7
commit 5ce70ec532
2 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -248,6 +248,7 @@ class Logbook_model extends CI_Model {
'COL_SRX_STRING' => $this->input->post('srx_string'),
'COL_QSL_VIA' => $this->input->post('qsl_via_callsign'),
'station_id' => $this->input->post('station_profile'),
'COL_OPERATOR' => $this->input->post('operator_callsign'),
);
$this->db->where('COL_PRIMARY_KEY', $this->input->post('id'));

Wyświetl plik

@ -322,6 +322,11 @@
</select>
</div>
<div class="form-group">
<label for="operatorCallsign">Operator Callsign</label>
<input type="text" id="operatorCallsign" class="form-control" name="operator_callsign" value="<?php echo $COL_OPERATOR; ?>" />
</div>
</div>