mirror of
https://github.com/wavelog/wavelog.git
synced 2026-03-22 02:14:13 +00:00
Fix a bug accidently introduced with CM ADIF
This commit is contained in:
@@ -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 {
|
||||||
|
|||||||
Reference in New Issue
Block a user