mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-23 10:08:38 +00:00
Neglected to add to the edit function in the logbook_model, also changed the name of the selector for eQSL.cc receive, to match the convention in the rest of the selectors.
This commit is contained in:
parent
1384926f72
commit
3f32c38e9c
@ -186,6 +186,10 @@ class Logbook_model extends CI_Model {
|
||||
'COL_QSL_RCVD' => $this->input->post('qsl_recv'),
|
||||
'COL_QSL_SENT_VIA' => $this->input->post('qsl_sent_method'),
|
||||
'COL_QSL_RCVD_VIA' => $this->input->post('qsl_recv_method'),
|
||||
'COL_EQSL_QSL_SENT' => $this->input->post('eqsl_sent'),
|
||||
'COL_EQSL_QSL_RCVD' => $this->input->post('eqsl_recv'),
|
||||
'COL_LOTW_QSL_SENT' => $this->input->post('lotw_sent'),
|
||||
'COL_LOTW_QSL_RCVD' => $this->input->post('lotw_recv'),
|
||||
'COL_IOTA' => $this->input->post('iota_ref'),
|
||||
'COL_QTH' => $this->input->post('qth'),
|
||||
'COL_FREQ_RX' => '0',
|
||||
|
@ -163,7 +163,7 @@
|
||||
<option value="I" <?php if($COL_EQSL_QSL_SENT == "I") { echo "selected=\"selected\""; } ?>>Invalid (Ignore)</option>
|
||||
</select></td>
|
||||
<td>Recv</td>
|
||||
<td><select name="EQSL_QSL_recv">
|
||||
<td><select name="eqsl_recv">
|
||||
<option value="N" <?php if($COL_EQSL_QSL_RCVD == "N") { echo "selected=\"selected\""; } ?>>No</option>
|
||||
<option value="Y" <?php if($COL_EQSL_QSL_RCVD == "Y") { echo "selected=\"selected\""; } ?>>Yes</option>
|
||||
<option value="R" <?php if($COL_EQSL_QSL_RCVD == "R") { echo "selected=\"selected\""; } ?>>Requested</option>
|
||||
|
Loading…
Reference in New Issue
Block a user