fixed error message while logging that trim() was called with argument NULL

这个提交包含在:
electricEngineer 2024-02-07 12:44:44 +01:00 提交者 GitHub
父节点 604910b850
当前提交 fe2ee9d659
找不到此签名对应的密钥
GPG 密钥 ID: B5690EEEBB952194

查看文件

@ -289,7 +289,7 @@ class Logbook_model extends CI_Model
$data['COL_MY_CITY'] = strtoupper(trim($station['station_city']));
$data['COL_MY_IOTA'] = strtoupper(trim($station['station_iota']));
$data['COL_MY_SOTA_REF'] = strtoupper(trim($station['station_sota']));
$data['COL_MY_WWFF_REF'] = strtoupper(trim($station['station_wwff']));
$data['COL_MY_WWFF_REF'] = $station['station_wwff'] ? strtoupper(trim($station['station_wwff'])) : '';
$data['COL_MY_POTA_REF'] = $station['station_pota'] == null ? '' : strtoupper(trim($station['station_pota']));
$data['COL_STATION_CALLSIGN'] = strtoupper(trim($station['station_callsign']));