no limit for full station list
这个提交包含在:
父节点
4fda258b14
当前提交
12efffeb41
共有 1 个文件被更改,包括 2 次插入 和 1 次删除
|
|
@ -112,7 +112,8 @@ class Map extends CI_Controller {
|
|||
$prop_mode = $this->input->post('prop_mode');
|
||||
$qsos = $this->logbook_model->map_custom_qsos($date_from, $date_to, $band, $mode, $prop_mode);
|
||||
} else if ($this->input->post('isFull') == true) {
|
||||
$qsos = $this->logbook_model->get_qsos(100000,0); // limited at 100000 (perhaps is too big for list of plot on map ?) //
|
||||
$station_id = $this->Stations->find_active();
|
||||
$qsos = $this->logbook_model->get_qsos(null,null,array($station_id)); // no limit for full //
|
||||
} else {
|
||||
$nb_qso = (intval($this->input->post('nb_qso'))>0)?$this->input->post('nb_qso'):25;
|
||||
$offset = (intval($this->input->post('offset'))>0)?$this->input->post('offset'):0;
|
||||
|
|
|
|||
正在加载…
在新工单中引用