http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8686

--- Comment #9 from Owen Leonard <[email protected]> ---
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.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to