From 80ad249f1d7bdc708bb44b87562e3f4fd6f4c482 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 --- 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 b447134207d..b35d703146f 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.25.1