diff --git a/application/libraries/DxccFlag.php b/application/libraries/DxccFlag.php index ddef37e6e..a08b7a953 100644 --- a/application/libraries/DxccFlag.php +++ b/application/libraries/DxccFlag.php @@ -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]; } }