mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[Timeline] Added VUCC as selection for award
This commit is contained in:
@@ -76,14 +76,14 @@ class Timeline extends CI_Controller {
|
||||
}
|
||||
|
||||
public function details() {
|
||||
$this->load->model('logbook_model');
|
||||
$this->load->model('timeline_model');
|
||||
|
||||
$querystring = str_replace('"', "", $this->input->post("Querystring"));
|
||||
|
||||
$band = str_replace('"', "", $this->input->post("Band"));
|
||||
$mode = str_replace('"', "", $this->input->post("Mode"));
|
||||
$type = str_replace('"', "", $this->input->post("Type"));
|
||||
$data['results'] = $this->logbook_model->timeline_qso_details($querystring, $band, $mode, $type);
|
||||
$data['results'] = $this->timeline_model->timeline_qso_details($querystring, $band, $mode, $type);
|
||||
|
||||
|
||||
switch($type) {
|
||||
@@ -100,6 +100,9 @@ class Timeline extends CI_Controller {
|
||||
case 'waz' : $data['page_title'] = "Log View - WAZ";
|
||||
$data['filter'] = "CQ zone ". $querystring;
|
||||
break;
|
||||
case 'vucc' : $data['page_title'] = "Log View - VUCC";
|
||||
$data['filter'] = "Gridsquare ". $querystring;
|
||||
break;
|
||||
}
|
||||
|
||||
if ($band != "All") {
|
||||
|
||||
Reference in New Issue
Block a user