Correctly handle when county isn't actually needed
这个提交包含在:
父节点
1626571c67
当前提交
e2b6a71d7c
共有 1 个文件被更改,包括 4 次插入 和 4 次删除
|
|
@ -855,11 +855,11 @@ class Logbook_model extends CI_Model {
|
|||
{
|
||||
$data = $query->row();
|
||||
$qsl_county = $data->COL_CNTY;
|
||||
$qsl_county = substr($qsl_county, (strpos($qsl_county, ',')+1));
|
||||
return $qsl_county;
|
||||
} else {
|
||||
return NULL;
|
||||
}
|
||||
|
||||
// Strip state identifier
|
||||
$qsl_county = substr($qsl_county, (strpos($qsl_county, ',')+1));
|
||||
return $qsl_county;
|
||||
}
|
||||
|
||||
function call_qth($callsign) {
|
||||
|
|
|
|||
正在加载…
在新工单中引用