From 95fc744b1f473ed669feef6d2be122e875e3933b 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 --- Koha/Patron.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Patron.pm b/Koha/Patron.pm index 25853703aa..ed4931afb1 100644 --- a/Koha/Patron.pm +++ b/Koha/Patron.pm @@ -3641,7 +3641,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.52.0