bug 2058: removing spurious warnings from C4::Items::AddItem
authorAndrew Moore <andrew.moore@liblime.com>
Fri, 25 Apr 2008 16:17:02 +0000 (11:17 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Fri, 25 Apr 2008 20:00:33 +0000 (15:00 -0500)
just remove a couple unnecessary warn statements.
no documentation or functionality changes.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/Items.pm

index 1721eb8..825667f 100644 (file)
@@ -229,8 +229,6 @@ sub AddItem {
 
     # create MARC tag representing item and add to bib
     my $new_item_marc = _marc_from_item_hash($item, $frameworkcode, $unlinked_item_subfields);
-    warn "HERE : ".$item->{'biblionumber'};
-    warn "HERE 2 : ".$new_item_marc->as_formatted;
     _add_item_field_to_biblio($new_item_marc, $item->{'biblionumber'}, $frameworkcode );
    
     logaction("CATALOGUING", "ADD", $itemnumber, "item") if C4::Context->preference("CataloguingLog");