Fix a bug accidently introduced with CM ADIF

This commit is contained in:
int2001
2025-12-05 10:13:55 +00:00
parent 521d0ddbea
commit 5495e85984

View File

@@ -37,7 +37,7 @@ if (!function_exists('clubaccess_check')) {
if ($user_level >= 9) { if ($user_level >= 9) {
// Officers can access any QSO // Officers can access any QSO
return true; return true;
} elseif ($user_level >= 6) { } elseif ($user_level >= $required_level) {
// ClubMemberADIF and regular members can only access their own QSOs // ClubMemberADIF and regular members can only access their own QSOs
return $qso->COL_OPERATOR == $operator_callsign; return $qso->COL_OPERATOR == $operator_callsign;
} else { } else {