From 740b87bdda733c0e9506edb8acd0b8af18b77fbb Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Fri, 26 Jan 2024 12:45:21 -0500 Subject: [PATCH] Bug 34478: Manual fix - remove cud from search op - authorities-home Signed-off-by: Jonathan Druart --- authorities/authorities-home.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/authorities/authorities-home.pl b/authorities/authorities-home.pl index 50e9a50213..b9a381a702 100755 --- a/authorities/authorities-home.pl +++ b/authorities/authorities-home.pl @@ -63,13 +63,13 @@ if ( $op eq "cud-delete" ) { if ( $query->param('operator') ) { # query contains search params so perform search - $op = "cud-do_search"; + $op = "do_search"; } else { $op = ''; } } -if ( $op eq "cud-do_search" ) { +if ( $op eq "do_search" ) { my $marclist = $query->param('marclist') || ''; my $and_or = $query->param('and_or') || ''; my $excluding = $query->param('excluding') || ''; -- 2.20.1