@@ -, +, @@ --- opac/opac-memberentry.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/opac/opac-memberentry.pl +++ a/opac/opac-memberentry.pl @@ -606,7 +606,7 @@ sub FilterUnchangedAttributes { my $changes = 0; foreach my $attr (grep { $_->code eq $attribute_type } @patron_attributes) { $changes = 1 - unless any { $_->{ value } eq $attr->attribute } @{ $entered_attributes }; + unless any { $_->{ attribute } eq $attr->attribute } @{ $entered_attributes }; last if $changes; } --