Fix clublog upload

pull/2079/head
phl0 2023-04-26 12:55:59 +02:00
rodzic 037752dd43
commit b31c61ccfa
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 48EA1E640798CA9A
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -63,7 +63,9 @@ class Clublog_model extends CI_Model {
}
function get_clublog_qsos($station_id){
$this->db->select('*, dxcc_entities.name as station_country');
$this->db->join('station_profile', 'station_profile.station_id = '.$this->config->item('table_name').'.station_id');
$this->db->join('dxcc_entities', 'station_profile.station_dxcc = dxcc_entities.adif', 'left');
$this->db->where($this->config->item('table_name').'.station_id', $station_id);
$this->db->group_start();
$this->db->where("COL_CLUBLOG_QSO_UPLOAD_STATUS", null);
@ -92,4 +94,4 @@ class Clublog_model extends CI_Model {
}
}
?>
?>