From 8cce69178d7655f746dda2546391e3b195bdf484 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 14 Apr 2012 12:13:44 +0200 Subject: [PATCH] Bug 7958 - Batch Item Delete Fails Adding back "use C4::Search;" in Items.pm fixes the problem. I think this is probably related to the denesting efforts. --- C4/Items.pm | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 4790091..d2528cc 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -30,6 +30,7 @@ use MARC::Record; use C4::ClassSource; use C4::Log; use List::MoreUtils qw/any/; +use C4::Search; use Data::Dumper; # used as part of logging item record changes, not just for # debugging; so please don't remove this -- 1.7.5.4