Merge pull request #2807 from int2001/noqrzqls

Catch empty QRZ.com response when downloading qrz-confirmations
这个提交包含在:
Andreas Kristiansen 2023-12-11 09:26:18 +01:00 提交者 GitHub
当前提交 eceff798fd
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -358,10 +358,11 @@ class Qrz extends CI_Controller {
} }
} }
if ($table != "") if ($table != "") {
{
$data['tableheaders'] = $tableheaders; $data['tableheaders'] = $tableheaders;
$data['table'] = $table; $data['table'] = $table;
} else {
$data['table'] = '';
} }
unlink($filepath); unlink($filepath);