[LoTW] Added extra error if LoTW data is missing
这个提交包含在:
父节点
a79ef3398c
当前提交
7630db5c3a
共有 1 个文件被更改,包括 8 次插入 和 4 次删除
|
|
@ -513,10 +513,14 @@ class Lotw extends CI_Controller {
|
|||
|
||||
unlink($filepath);
|
||||
|
||||
$data['page_title'] = "LoTW ADIF Information";
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('lotw/analysis');
|
||||
$this->load->view('interface_assets/footer');
|
||||
if(isset($data['lotw_table_headers']) {
|
||||
$data['page_title'] = "LoTW ADIF Information";
|
||||
$this->load->view('interface_assets/header', $data);
|
||||
$this->load->view('lotw/analysis');
|
||||
$this->load->view('interface_assets/footer');
|
||||
} else {
|
||||
echo "LoTW Downloading failed either due to it being down or incorrect logins.";
|
||||
}
|
||||
}
|
||||
|
||||
function lotw_download() {
|
||||
|
|
|
|||
正在加载…
在新工单中引用