From 0a59ab278e0824f924b2adaa9dda1b2e17552697 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 26 Nov 2021 12:15:17 +0100 Subject: [PATCH] Bug 28959: Fix occurrence in tools/batch_delete_records.pl Signed-off-by: Jonathan Druart --- tools/batch_delete_records.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/batch_delete_records.pl b/tools/batch_delete_records.pl index b447134207..b35d703146 100755 --- a/tools/batch_delete_records.pl +++ b/tools/batch_delete_records.pl @@ -56,8 +56,8 @@ if ( $op eq 'form' ) { op => 'form', lists => scalar Koha::Virtualshelves->search( [ - { category => 1, owner => $loggedinuser }, - { category => 2 } + { public => 0, owner => $loggedinuser }, + { public => 1 } ] ) ); -- 2.39.5