From 14bb32a70383368bee189d2daebf45fc98c5a7dc Mon Sep 17 00:00:00 2001 From: Colin Campbell Date: Tue, 3 Dec 2013 11:39:43 +0000 Subject: [PATCH] Bug 6331 Do not populate marc in deleted items This is supplementary to the main patch for bug 6331. Having removed the attribute marc from items DelItem should not populate it --- C4/Items.pm | 5 ----- 1 file changed, 5 deletions(-) diff --git a/C4/Items.pm b/C4/Items.pm index 073d6f7..8d8ce43 100644 --- a/C4/Items.pm +++ b/C4/Items.pm @@ -622,11 +622,6 @@ sub DelItem { my $record = GetMarcBiblio($biblionumber); ModZebra( $biblionumber, "specialUpdate", "biblioserver" ); - # backup the record - my $copy2deleted = $dbh->prepare("UPDATE deleteditems SET marc=? WHERE itemnumber=?"); - $copy2deleted->execute( $record->as_usmarc(), $itemnumber ); - # This last update statement makes that the timestamp column in deleteditems is updated too. If you remove these lines, please add a line to update the timestamp separately. See Bugzilla report 7146 and Biblio.pm (DelBiblio). - #search item field code logaction("CATALOGUING", "DELETE", $itemnumber, "item") if C4::Context->preference("CataloguingLog"); } -- 1.8.3.1