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

This commit is contained in:
Peter Goodhall 2019-10-06 16:08:11 +01:00
parent a2f8947ba7
commit 5ce70ec532
2 changed files with 6 additions and 0 deletions

View File

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

View File

@ -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>