@@ -, +, @@ =?UTF-8?q?e=20approving=20OPAC-edited=20patron=20attributes=20containing?= =?UTF-8?q?=20umlauts=20(=C3=A4=C3=B6=C3=BC)?= - Reproduce problem above - Apply patch - Verify that Home > Patron > Update records displays without error and 'New value' displays properly --- Koha/Patron/Modifications.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Patron/Modifications.pm +++ a/Koha/Patron/Modifications.pm @@ -97,7 +97,7 @@ sub pending { while ( my $row = $sth->fetchrow_hashref() ) { foreach my $key ( keys %$row ) { if ( defined $row->{$key} && $key eq 'extended_attributes' ) { - my $attributes = decode_json( $row->{$key} ); + my $attributes = JSON->new->utf8(0)->decode( $row->{$key} ); my @pending_attributes; foreach my $attr ( @{$attributes} ) { push @pending_attributes, --