@@ -, +, @@ --- C4/Log.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/C4/Log.pm +++ a/C4/Log.pm @@ -77,7 +77,7 @@ sub logaction { $interface //= C4::Context->interface; $infos = $infos->get_from_storage - if ref($infos) !~ /HASH|ARRAY/ && $infos->isa('Koha::Object'); + if ref($infos) && ref($infos) !~ /HASH|ARRAY/ && $infos->isa('Koha::Object'); my $dbh = C4::Context->dbh; my $sth=$dbh->prepare("Insert into action_logs (timestamp,user,module,action,object,info,interface) values (now(),?,?,?,?,?,?)"); --