From 1e50d4c2f95f2b4a1a1d16d3db9e880729ff1424 Mon Sep 17 00:00:00 2001 From: phl0 Date: Sun, 9 Nov 2025 23:38:40 +0100 Subject: [PATCH] Revert "Don't use AA00aa as grid from qrz.com" This reverts commit aa607651d0dfd77505ff346dc8aed53890bda8dd. --- application/libraries/Qrz.php | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/application/libraries/Qrz.php b/application/libraries/Qrz.php index f2e640708..a5c237dcc 100644 --- a/application/libraries/Qrz.php +++ b/application/libraries/Qrz.php @@ -106,12 +106,7 @@ class Qrz { $data['ccode'] = (string)$xml->Callsign->ccode; $data['lat'] = (string)$xml->Callsign->lat; $data['lon'] = (string)$xml->Callsign->lon; - // qrz.com gives AA00aa if the user deleted his grid from the profile - if ((string)$xml->Callsign->grid == 'AA00aa') { - $data['grid'] = ''; - } else { - $data['grid'] = (string)$xml->Callsign->grid; - } + $data['grid'] = (string)$xml->Callsign->grid; $data['county'] = (string)$xml->Callsign->county; $data['fips'] = (string)$xml->Callsign->fips; $data['land'] = (string)$xml->Callsign->land;