From 7c833894b652f8e6b6a395b021fe1a43905d5df6 Mon Sep 17 00:00:00 2001 From: DB4SCW Date: Wed, 8 Jan 2025 11:59:55 +0000 Subject: [PATCH] fix bug --- application/controllers/Adif.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/application/controllers/Adif.php b/application/controllers/Adif.php index cc7808e43..aaeff629d 100644 --- a/application/controllers/Adif.php +++ b/application/controllers/Adif.php @@ -241,6 +241,10 @@ class adif extends CI_Controller { $record['contest_id'] = $contest; } + //handle club operator + if ($club_operator != '') { + $record['operator']=strtoupper($club_operator); + //check if contest_id exists in record and extract all found contest_ids if(array_key_exists('contest_id', $record)){ $contest_id = $record['contest_id'];