https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=42024
--- Comment #1 from Magnus Enger <[email protected]> --- Looks like this code in C4::Log::logaction() is responsible for producing the contents of "info": 90 if ( $infos->isa('Koha::Item') && $modulename eq 'CATALOGUING' && $actionname eq 'MODIFY' ) { 91 $infos = "item " . Dumper( $original->unblessed ); The "diff" is done with encode_json: 140 $diff //= encode_json( diff( $original, $updated, noU => 1 ) ) 141 if $original && ref $updated eq 'HASH'; -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://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/
