From a2dbf6e362a3e993efd49b0f4b7867d96282bab1 Mon Sep 17 00:00:00 2001 From: int2001 Date: Wed, 25 Oct 2023 07:41:01 +0000 Subject: [PATCH] 2nd location needs to be fixed for eqsl --- application/models/Eqslmethods_model.php | 1 + 1 file changed, 1 insertion(+) diff --git a/application/models/Eqslmethods_model.php b/application/models/Eqslmethods_model.php index 08e975005..13e05dc64 100644 --- a/application/models/Eqslmethods_model.php +++ b/application/models/Eqslmethods_model.php @@ -48,6 +48,7 @@ class Eqslmethods_model extends CI_Model { foreach ($stations->result() as $row) { array_push($logbooks_locations_array, $row->station_id); } + array_push($logbooks_locations_array, -9999); } $this->db->select('station_profile.*, '.$this->config->item('table_name').'.COL_PRIMARY_KEY, '.$this->config->item('table_name').'.COL_TIME_ON, '.$this->config->item('table_name').'.COL_CALL, '.$this->config->item('table_name').'.COL_MODE, '.$this->config->item('table_name').'.COL_SUBMODE, '.$this->config->item('table_name').'.COL_BAND, '.$this->config->item('table_name').'.COL_COMMENT, '.$this->config->item('table_name').'.COL_RST_SENT, '.$this->config->item('table_name').'.COL_PROP_MODE, '.$this->config->item('table_name').'.COL_SAT_NAME, '.$this->config->item('table_name').'.COL_SAT_MODE, '.$this->config->item('table_name').'.COL_QSLMSG');