mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
fixed error message while logging that trim() was called with argument NULL
This commit is contained in:
parent
604910b850
commit
fe2ee9d659
1 changed files with 1 additions and 1 deletions
|
|
@ -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']));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue