C4::Items -- removed two warns
authorGalen Charlton <galen.charlton@liblime.com>
Mon, 21 Jan 2008 20:14:40 +0000 (14:14 -0600)
committerJoshua Ferraro <jmf@liblime.com>
Tue, 22 Jan 2008 13:23:32 +0000 (07:23 -0600)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/Items.pm

index 6ee0698..53169e9 100644 (file)
@@ -1138,7 +1138,6 @@ sub GetItemsInfo {
        );
        my $ssth = $dbh->prepare("SELECT serialseq,publisheddate from serialitems left join serial on serialitems.serialid=serial.serialid where serialitems.itemnumber=? "); 
        while ( my $data = $sth->fetchrow_hashref ) {
-          warn $data->{itemnumber};
         my $datedue = '';
         $isth->execute( $data->{'itemnumber'} );
         if ( my $idata = $isth->fetchrow_hashref ) {
@@ -1157,7 +1156,6 @@ sub GetItemsInfo {
                if ( $data->{'serial'}) {       
                        $ssth->execute($data->{'itemnumber'}) ;
                        ($data->{'serialseq'} , $data->{'publisheddate'}) = $ssth->fetchrow_array();
-                       warn $data->{'serialseq'} , $data->{'publisheddate'};
                        $serial = 1;
         }
                if ( $datedue eq '' ) {