From d0ad9418cc51d0e8f1585f3ef4ef40b521975b13 Mon Sep 17 00:00:00 2001 From: Ayoub Glizi-Vicioso Date: Wed, 14 Jan 2026 16:52:01 -0500 Subject: [PATCH] Bug 20956: fixup syntax error Signed-off-by: David Nind --- Koha/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index fc473e9d2e..700a58a600 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -3642,7 +3642,7 @@ sub permissions { my $active_flags = {}; # Check which flags are active based on bit values - foreach my $bit ( keys %$userflags_map ) { + foreach my $bit ( keys %userflags_map ) { if ( $flags & ( 1 << $bit ) ) { my $flag = $userflags_map{$bit}; $active_flags->{$flag} = 1; -- 2.53.0