mirror of
https://github.com/magicbug/Cloudlog
synced 2024-11-21 15:56:30 +00:00
Distance plots only shown for the active station profile not all qsos in the database table
This commit is contained in:
parent
7103d74635
commit
6b4c85cd62
@ -14,6 +14,7 @@ class Distances_model extends CI_Model
|
||||
$CI =& get_instance();
|
||||
$CI->load->model('Stations');
|
||||
$station_id = $CI->Stations->find_active();
|
||||
|
||||
$station_gridsquare = $CI->Stations->find_gridsquare();
|
||||
$gridsquare = explode(',', $station_gridsquare); // We need to convert to an array, since a user can enter several gridsquares
|
||||
|
||||
@ -26,7 +27,7 @@ class Distances_model extends CI_Model
|
||||
else {
|
||||
$this->db->where('col_band', $postdata['band']);
|
||||
}
|
||||
|
||||
$this->db->where('station_id', $station_id);
|
||||
$dataarrayata = $this->db->get($this->config->item('table_name'));
|
||||
$this->plot($dataarrayata->result_array(), $gridsquare);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user