From f5582800183263b3b772a8dcfeb9d8d1639f0e2c Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Fri, 16 Apr 2021 19:49:36 +0000 Subject: [PATCH] Bug 28162: fix doubled scalar sigil --- opac/opac-memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opac/opac-memberentry.pl b/opac/opac-memberentry.pl index 015c56a3da..17f2b480f8 100755 --- a/opac/opac-memberentry.pl +++ b/opac/opac-memberentry.pl @@ -107,7 +107,7 @@ my $conflicting_attribute = 0; foreach my $attr (@$attributes) { my $attribute = Koha::Patron::Attribute->new($attr); - if ( !$$attribute->unique_ok ) { + if ( !$attribute->unique_ok ) { my $attr_type = Koha::Patron::Attribute::Types->find($attr->{code}); $template->param( extended_unique_id_failed_code => $attr->{code}, -- 2.11.0