[PHP 8.1] Another fix for passing null to string
这个提交包含在:
父节点
573c1b48f0
当前提交
64261b4d87
共有 1 个文件被更改,包括 1 次插入 和 1 次删除
|
|
@ -2782,7 +2782,7 @@ class Logbook_model extends CI_Model {
|
|||
$data['COL_MY_IOTA'] = strtoupper(trim($row['station_iota']));
|
||||
$data['COL_MY_SOTA_REF'] = strtoupper(trim($row['station_sota']));
|
||||
$data['COL_MY_WWFF_REF'] = strtoupper(trim($row['station_wwff']));
|
||||
$data['COL_MY_POTA_REF'] = strtoupper(trim($row['station_pota']));
|
||||
$data['COL_MY_POTA_REF'] = $row['station_pota'] == null ? '' : strtoupper(trim($row['station_pota']));
|
||||
|
||||
$data['COL_STATION_CALLSIGN'] = strtoupper(trim($row['station_callsign']));
|
||||
$data['COL_MY_DXCC'] = strtoupper(trim($row['station_dxcc']));
|
||||
|
|
|
|||
正在加载…
在新工单中引用