bug 2058: removing spurious warnings from C4::Items::AddItem

just remove a couple unnecessary warn statements.
no documentation or functionality changes.

Signed-off-by: Joshua Ferraro <jmf@liblime.com>
This commit is contained in:
Andrew Moore 2008-04-25 11:17:02 -05:00 committed by Joshua Ferraro
parent e62a74f305
commit 722a9a9d1e

View 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");