From 960ad65d1838a3c5d7c280ff8d85d39bb4c8a3b9 Mon Sep 17 00:00:00 2001 From: Baptiste Wojtkowski Date: Fri, 25 Jul 2025 12:51:19 +0000 Subject: [PATCH] Bug 40515: Fix regexp for cud-mark_as_lost_and_notify Content-Type: text/plain; charset=utf-8 Signed-off-by: David Flater Signed-off-by: Marcel de Rooy --- circ/pendingreserves.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circ/pendingreserves.pl b/circ/pendingreserves.pl index 5ce792a1a9..746ae424e2 100755 --- a/circ/pendingreserves.pl +++ b/circ/pendingreserves.pl @@ -58,7 +58,7 @@ if ( $op eq 'cud-cancel_reserve' and $reserve_id ) { $hold->cancel( { cancellation_reason => $cancellation_reason } ); push @messages, { type => 'message', code => 'hold_cancelled' }; } -} elsif ( $op =~ m|^mark_as_lost| ) { +} elsif ( $op eq 'cud-mark_as_lost' or $op eq 'cud-mark_as_lost_and_notify' ) { my $hold = Koha::Holds->find($reserve_id); die "wrong reserve_id" unless $hold; # This is a bit rude, but we are not supposed to get a wrong reserve_id my $item = $hold->item; -- 2.39.5