Lines 79-84
sub logaction {
Link Here
|
79 |
|
79 |
|
80 |
if ( ref($infos) && ref($infos) !~ /HASH|ARRAY/ && $infos->isa('Koha::Object') ) { |
80 |
if ( ref($infos) && ref($infos) !~ /HASH|ARRAY/ && $infos->isa('Koha::Object') ) { |
81 |
$infos = $infos->get_from_storage if $infos->in_storage; |
81 |
$infos = $infos->get_from_storage if $infos->in_storage; |
|
|
82 |
local $Data::Dumper::Sortkeys = 1; |
82 |
$infos = Dumper( $infos->unblessed ); |
83 |
$infos = Dumper( $infos->unblessed ); |
83 |
|
84 |
|
84 |
if ( $infos->isa('Koha::Item') && $modulename eq 'CATALOGUING' && $actionname eq 'MODIFY' ) { |
85 |
if ( $infos->isa('Koha::Item') && $modulename eq 'CATALOGUING' && $actionname eq 'MODIFY' ) { |
85 |
- |
|
|