[Koha-bugs] [Bug 8686] author search in staff missing checkboxes and menu

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Sep 28 18:54:40 CEST 2012


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

--- Comment #9 from Owen Leonard <oleonard at 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.


More information about the Koha-bugs mailing list