http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8686 --- Comment #9 from Owen Leonard <oleonard@myacpl.org> --- It looks to me like this is a JavaScript problem because a variable being passed to JavaScript isn't properly escaped (hence the difference bewteen <"Tepper, Sheri S."> and <Tepper, Sheri S.>. Tracing the variable back leads me to Search.pm, line 2770: for my $field (qw/ lccn isbn issn title author dewey subject /) { my $encvalue = URI::Escape::uri_escape_utf8($bibrec->{$field}); push @$array, { name=>$field, value=>$bibrec->{$field}, encvalue=>$encvalue } if defined $bibrec->{$field}; } I think $encvalue is different on systems which show the error. My copy of URI::Escape is version 3.31, but ByWater's demo reports 3.30. Could that version difference be the source of the different outcomes? -- You are receiving this mail because: You are watching all bug changes.