diff --git a/application/controllers/Eqsl.php b/application/controllers/Eqsl.php index f9004658..3e2dd369 100644 --- a/application/controllers/Eqsl.php +++ b/application/controllers/Eqsl.php @@ -558,6 +558,7 @@ class eqsl extends CI_Controller { if(!$this->user_model->authorize(2)) { $this->session->set_flashdata('notice', 'You\'re not allowed to do that!'); redirect('dashboard'); } $data['page_title'] = "eQSL Card Image Download"; + $custom_date_format = $this->session->userdata('user_date_format'); $this->load->model('eqslmethods_model'); $rows = ''; @@ -569,9 +570,10 @@ class eqsl extends CI_Controller { // i.e. when operating /P it must be callsign/p // the password, however, is always the same as the main account $data['user_eqsl_name'] = $qsl['station_callsign']; - $adif = $this->generateAdif($qsl, $data); + //$adif = $this->generateAdif($qsl, $data); - $status = $this->uploadQso($adif, $qsl); + //$status = $this->uploadQso($adif, $qsl); + $status = "none"; $timestamp = strtotime($qsl['COL_TIME_ON']); $rows .= "
Below is a table of QSOs that have been confirmed on eQSL but QSL images have not been downloaded yet.
+ + + Clicking \"Upload QSOs\" will send QSO information to eQSL.cc."; + echo form_open('eqsl/export'); + echo ""; + echo ""; + } + else + { + if (isset($eqsl_results_table)) + { + echo "The following QSOs were sent to eQSL.
"; + echo $eqsl_results_table; + } + else + { + echo "There are no QSOs whose eQSL card images have not yet been downloaded. Go log some more QSOs!
"; + } + } +?> +