mirror of
https://github.com/magicbug/Cloudlog
synced 2026-08-13 17:49:35 -04:00
[PHP 8.1] Fix for passing null to parameter
This commit is contained in:
parent
578ad13f96
commit
8ad06daf2b
1 changed files with 2 additions and 2 deletions
|
|
@ -175,8 +175,8 @@ class Logbook_model extends CI_Model {
|
|||
'COL_TX_PWR' => $tx_power,
|
||||
'COL_STX' => $stx,
|
||||
'COL_SRX' => $srx,
|
||||
'COL_STX_STRING' => strtoupper(trim($stx_string)),
|
||||
'COL_SRX_STRING' => strtoupper(trim($srx_string)),
|
||||
'COL_STX_STRING' => $stx_string == null ? '' : strtoupper(trim($stx_string)),
|
||||
'COL_SRX_STRING' => $srx_string == null ? '' : strtoupper(trim($srx_string)),
|
||||
'COL_CONTEST_ID' => $contestid,
|
||||
'COL_NR_BURSTS' => null,
|
||||
'COL_NR_PINGS' => null,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue