[Koha-bugs] [Bug 31351] Worker dies on reindex job when operator last name/first name/branch name contains non-ASCII chars

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Wed Sep 7 14:34:32 CEST 2022


https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=31351

--- Comment #17 from Marcel de Rooy <m.de.rooy at rijksmuseum.nl> ---
Out of scope but possible candidates for inspection too ;)

root at master:/usr/share/koha# git grep decode_json
C4/Search/History.pm:use JSON qw( decode_json encode_json );
C4/Search/History.pm:        if (decode_json( $cookie )) {
C4/Search/History.pm:            @searches = @{decode_json( $cookie )}
C4/Search/History.pm:      eval { decode_json( uri_unescape(
$session->param('search_history') ) ) };
C4/UsageStats.pm:use JSON qw( decode_json encode_json );
C4/UsageStats.pm:    my $content = decode_json( $res->decoded_content );
Koha/REST/Plugin/Query.pm:use JSON qw( decode_json );
Koha/REST/Plugin/Query.pm:            $q_params = decode_json($q_params) unless
reftype $q_params;
misc/background_jobs_worker.pl:use JSON qw( decode_json );
misc/background_jobs_worker.pl:        my $args = decode_json($body);
misc/background_jobs_worker.pl:            my $args = decode_json($job->data);
misc/devel/get_prepared_letter.pl:use JSON qw( decode_json );
misc/devel/get_prepared_letter.pl:$repeat = $repeat ? decode_json($repeat) :
{};
misc/devel/get_prepared_letter.pl:$tables = $tables ? decode_json($tables) :
{};
misc/devel/get_prepared_letter.pl:$loops  = $loops  ? decode_json($loops)  :
{};
opac/opac-detail.pl:use JSON qw( decode_json );
opac/opac-search.pl:use JSON qw/decode_json encode_json/;
opac/svc/auth/googleopenidconnect:    my $json = decode_json(
$response->decoded_content );
opac/svc/auth/googleopenidconnect:    my $json     = decode_json($response);
opac/svc/auth/googleopenidconnect:        my $claims_json =
decode_json($claims);
svc/report:use JSON qw( encode_json decode_json );

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list