From 7f9dbd597aa0ee156a58d17f534202da23676e8d Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 2 Sep 2025 12:36:24 +0200 Subject: [PATCH] Bug 40680: Fix svc/virtualshelves/search Attempt to call undefined import method with arguments (search) via package C4::Utils::DataTables::VirtualShelves (Perhaps you forgot to load the package?) at svc/virtualshelves/search line 8. --- svc/virtualshelves/search | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/svc/virtualshelves/search b/svc/virtualshelves/search index 5b2fad33ae1..16a72e7cbc4 100755 --- a/svc/virtualshelves/search +++ b/svc/virtualshelves/search @@ -5,7 +5,7 @@ use CGI; use C4::Auth qw( get_template_and_user ); use C4::Output qw( output_with_http_headers ); -use C4::Utils::DataTables::VirtualShelves qw( search ); +use C4::Utils::DataTables::VirtualShelves; my $input = CGI->new; -- 2.34.1