From 874dc72ba2c4ff60dc06faf8f49aaf8fc9c3e0bc Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Tue, 18 Nov 2025 01:06:14 +0000 Subject: [PATCH] Bug 20844: (follow-up) Use js form submit and add cud- ops --- catalogue/updateitem.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalogue/updateitem.pl b/catalogue/updateitem.pl index 4d7cc5c456a..3f3da5371e4 100755 --- a/catalogue/updateitem.pl +++ b/catalogue/updateitem.pl @@ -45,7 +45,7 @@ my $redirecturl = $cgi->param('redirecturl'); if ( $op eq "cud-cancelhold" ) { LostItem( $itemnumber, 'moredetail', 0, { cancel_reserve => 1 } ); } elsif ( $op eq "cud-reverthold" ) { - LostItem( $itemnumber, 'moredetail', 0, { cancel_reserve => 0 } ); + LostItem( $itemnumber, 'moredetail', 0, { cancel_reserve => undef } ); } if ( defined $redirecturl ) { -- 2.39.5