[Timeline] Fixed if no QSOs found.
这个提交包含在:
父节点
9e4c97e45b
当前提交
6e6fe817fe
共有 1 个文件被更改,包括 4 次插入 和 0 次删除
|
|
@ -8,6 +8,10 @@ class Timeline_model extends CI_Model
|
|||
$CI->load->model('logbooks_model');
|
||||
$logbooks_locations_array = $CI->logbooks_model->list_logbook_relationships($this->session->userdata('active_station_logbook'));
|
||||
|
||||
if (!$logbooks_locations_array) {
|
||||
return null;
|
||||
}
|
||||
|
||||
$location_list = "'".implode("','",$logbooks_locations_array)."'";
|
||||
|
||||
switch ($award) {
|
||||
|
|
|
|||
正在加载…
在新工单中引用