From 0d5065dd4ab245c1441f79ecf07fb5bf573b9c04 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 6bee324098..08486f9627 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