Check to see if dxcc is set on import to avoid errors
这个提交包含在:
父节点
80f4bc210c
当前提交
064075980b
共有 1 个文件被更改,包括 3 次插入 和 1 次删除
|
|
@ -1538,7 +1538,9 @@ class Logbook_model extends CI_Model {
|
||||||
if(isset($record['country'])) {
|
if(isset($record['country'])) {
|
||||||
$country = $record['country'];
|
$country = $record['country'];
|
||||||
} else {
|
} else {
|
||||||
$country = ucwords(strtolower($dxcc[1]));
|
if (isset($dxcc[1])) {
|
||||||
|
$country = ucwords(strtolower($dxcc[1]));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// RST recevied
|
// RST recevied
|
||||||
|
|
|
||||||
正在加载…
在新工单中引用