Merge pull request #2644 from int2001/fix_club_edit

Fix club edit
This commit is contained in:
Joerg (DJ7NT)
2025-12-05 11:51:48 +01:00
committed by GitHub

View File

@@ -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 {