Removed Debug and re-added empty lines

This commit is contained in:
int2001
2024-09-11 08:36:26 +00:00
parent 61d3856e41
commit 9cb6b4a176
2 changed files with 6 additions and 1 deletions

View File

@@ -77,17 +77,23 @@ class adif extends CI_Controller {
public function export_custom() {
// Set memory limit to unlimited to allow heavy usage
ini_set('memory_limit', '-1');
$this->load->model('adif_data');
$station_id = $this->security->xss_clean($this->input->post('station_profile'));
// Used for exporting QSOs not previously exported to LoTW
if ($this->input->post('exportLotw') == 1) {
$exportLotw = true;
} else {
$exportLotw = false;
}
$data['qsos'] = $this->adif_data->export_custom($this->input->post('from'), $this->input->post('to'), $station_id, $exportLotw);
$this->load->view('adif/data/exportall', $data);
if ($this->input->post('markLotw') == 1) {
foreach ($data['qsos']->result() as $qso)
{