From 5495e85984f72a5b6390c1041e81cec66f88564a Mon Sep 17 00:00:00 2001 From: int2001 Date: Fri, 5 Dec 2025 10:13:55 +0000 Subject: [PATCH] Fix a bug accidently introduced with CM ADIF --- application/helpers/club_helper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/helpers/club_helper.php b/application/helpers/club_helper.php index 859fe7674..cb281d4e9 100644 --- a/application/helpers/club_helper.php +++ b/application/helpers/club_helper.php @@ -37,7 +37,7 @@ if (!function_exists('clubaccess_check')) { if ($user_level >= 9) { // Officers can access any QSO return true; - } elseif ($user_level >= 6) { + } elseif ($user_level >= $required_level) { // ClubMemberADIF and regular members can only access their own QSOs return $qso->COL_OPERATOR == $operator_callsign; } else {