diff --git a/application/controllers/Logbook.php b/application/controllers/Logbook.php index 3c99ad7c..61e06e58 100755 --- a/application/controllers/Logbook.php +++ b/application/controllers/Logbook.php @@ -556,7 +556,7 @@ class Logbook extends CI_Controller { if ($query->num_rows() > 0) { $data['results'] = $query; - $this->load->view('view_log/partial/log.php', $data); + $this->load->view('view_log/partial/log_ajax.php', $data); } else { $this->load->model('search'); @@ -565,7 +565,7 @@ class Logbook extends CI_Controller { if ($iota_search->num_rows() > 0) { $data['results'] = $iota_search; - $this->load->view('view_log/partial/log.php', $data); + $this->load->view('view_log/partial/log_ajax.php', $data); } else { if ($this->config->item('callbook') == "qrz" && $this->config->item('qrz_username') != null && $this->config->item('qrz_password') != null) { // Lookup using QRZ diff --git a/application/controllers/Timeline.php b/application/controllers/Timeline.php index 8bd28ed1..cb99c636 100644 --- a/application/controllers/Timeline.php +++ b/application/controllers/Timeline.php @@ -37,9 +37,9 @@ class Timeline extends CI_Controller { public function details() { $this->load->model('logbook_model'); - $adif = str_replace('"', "", $this->input->get("Adif")); + $adif = str_replace('"', "", $this->input->post("Adif")); $country = $this->logbook_model->get_entity($adif); - $band = str_replace('"', "", $this->input->get("Band")); + $band = str_replace('"', "", $this->input->post("Band")); $data['results'] = $this->logbook_model->timeline_qso_details($adif, $band); // Render Page @@ -50,9 +50,7 @@ class Timeline extends CI_Controller { $data['filter'] .= " and " . $band; } - $this->load->view('interface_assets/header', $data); - $this->load->view('timeline/details'); - $this->load->view('interface_assets/footer'); + $this->load->view('timeline/details', $data); } } \ No newline at end of file diff --git a/application/views/dashboard/index.php b/application/views/dashboard/index.php index 2cb62260..826bf343 100644 --- a/application/views/dashboard/index.php +++ b/application/views/dashboard/index.php @@ -71,9 +71,7 @@