* Mon May 05 2025 Brian Read <brianr@koozali.org> 11.0.0-83.sme

- Mod to SrvMngr-Auth to account for partials matching AdminPanels options
This commit is contained in:
2025-05-05 07:01:25 +01:00
parent dbfeaa18a3
commit 2538ac9ea0
3 changed files with 7 additions and 5 deletions

View File

@@ -69,7 +69,8 @@ sub has_panel_access {
# Check if requested panel is in allowed panels
foreach my $allowed_panel (@{$auth_info->{allowed_panels}}) {
return 1 if $panel eq lc($allowed_panel); #Controller files are capitalised, but that is lost in panel id.
return 1 if lc($panel) eq lc($allowed_panel)
|| lc(substr($panel, 0, length($allowed_panel))) eq lc($allowed_panel);
}
return 0;
@@ -96,4 +97,4 @@ sub check_admin_access {
return has_panel_access($c, $requested_panel);
}
1; # Return true value for module loading
1; # Return true value for module loading