US County - fixed query

pull/1460/head
Andreas 2022-05-29 20:01:44 +02:00
rodzic ced69b8ea4
commit 9e4c6c6e72
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -844,14 +844,13 @@ class Logbook_model extends CI_Model {
function call_us_county($callsign) {
$this->db->select('COL_CALL, COL_CNTY');
$this->db->where('COL_CALL', $callsign);
$where = "COL_NAME != \"\"";
$where = "COL_CNTY != \"\"";
$this->db->where($where);
$this->db->order_by("COL_TIME_ON", "desc");
$this->db->limit(1);
$query = $this->db->get($this->config->item('table_name'));
$name = "";
if ($query->num_rows() > 0)
{
$data = $query->row();