Make the fix PHP8.3 compliant

This commit is contained in:
phl0
2024-04-10 10:34:31 +02:00
parent 7234d38a89
commit 5e9513e1ca

View File

@@ -410,7 +410,7 @@ class DxccFlag
);
public function get($dxcc) {
if ($dxcc ?? '' == '') { $dxcc='0'; } // Failover if Empty or NULL
return $this->dxccFlags[$dxcc];
if (($dxcc ?? '') == '') { $dxcc='0'; } // Failover if Empty or NULL
return $this->dxccFlags[$dxcc];
}
}