From 76a873a1c7b5b3b759a4d38603f11d58f3cc9ff7 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 1a14171a5a5..3da1a7edd83 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