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.

pull/124/head
Corby Krick 2013-02-11 18:55:11 -06:00
rodzic 1384926f72
commit 3f32c38e9c
2 zmienionych plików z 5 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

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