Bug 28959: Fix occurrence in tools/batch_delete_records.pl

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
Jonathan Druart 2021-11-26 12:15:17 +01:00
parent 77a34e099a
commit 0a59ab278e

View file

@ -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 }
]
)
);