allow ACL property match to contain ":"

This commit is contained in:
Oliver Gorwits
2023-07-14 20:20:21 +01:00
parent 05cd050342
commit fcd1c45606

View File

@@ -202,7 +202,7 @@ sub check_acl {
}
# prop:val
if ($rule =~ m/^([^:]+):([^:]*)$/) {
if ($rule =~ m/^([^:]+):(.*)$/) {
my $prop = $1;
my $match = $2 || '';
my $found = false;