mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 10:24:14 +00:00
[Distances Worked] Added propagation filter
This commit is contained in:
@@ -74,12 +74,13 @@ class Distances extends CI_Controller {
|
||||
$distance = $this->security->xss_clean($this->input->post('distance'));
|
||||
$band = $this->security->xss_clean($this->input->post('band'));
|
||||
$sat = $this->security->xss_clean($this->input->post('sat'));
|
||||
$propagation = $this->security->xss_clean($this->input->post('propagation'));
|
||||
|
||||
$data['results'] = $this->distances_model->qso_details($distance, $band, $sat);
|
||||
$data['results'] = $this->distances_model->qso_details($distance, $band, $sat, $propagation);
|
||||
|
||||
// Render Page
|
||||
$data['page_title'] = "Log View - " . $distance;
|
||||
$data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band;
|
||||
$data['filter'] = __("QSOs with") . " " . $distance . " " . __("and band"). " " . $band. __("and propagation"). " " . $propagation;
|
||||
$this->load->view('awards/details', $data);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user