From 0e9733de86bf88672dd1d9403910f4d45efcde57 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Thu, 14 Sep 2023 09:11:56 +0000 Subject: [PATCH] Bug 34786: after_biblio_action hooks - No find when action is delete Content-Type: text/plain; charset=utf-8 Test plan: Run t/db_dependent/Koha/Plugins/Biblio_and_Items_plugin_hooks.t Signed-off-by: Marcel de Rooy --- C4/Biblio.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/C4/Biblio.pm b/C4/Biblio.pm index c64a721c77..a0e942f79e 100644 --- a/C4/Biblio.pm +++ b/C4/Biblio.pm @@ -3169,9 +3169,9 @@ sub _after_biblio_action_hooks { my ( $args ) = @_; my $biblio_id = $args->{biblio_id}; - my $action = $args->{action}; + my $action = $args->{action} // q{}; - my $biblio = Koha::Biblios->find( $biblio_id ); + my $biblio = $action ne 'delete' ? Koha::Biblios->find($biblio_id) : undef; Koha::Plugins->call( 'after_biblio_action', { -- 2.30.2