Typo fixes
authorChris Cormack <chrisc@catalyst.net.nz>
Tue, 25 Feb 2014 21:09:43 +0000 (10:09 +1300)
committerChris Cormack <chrisc@catalyst.net.nz>
Tue, 25 Feb 2014 21:09:43 +0000 (10:09 +1300)
lib/NCIP/Handler/LookupItem.pm
lib/NCIPServer.pm

index e13bae8..3dc3c0f 100644 (file)
@@ -23,13 +23,14 @@ our @ISA = qw(NCIP::Handler);
 sub handle {
     my $self   = shift;
     my $xmldoc = shift;
+    my $item;
     if ($xmldoc) {
 
         # Given our xml document, lets find the itemid
         my ($item_id) =
           $xmldoc->getElementsByTagNameNS( $self->namespace(),
             'ItemIdentifierValue' );
-        my $item = NCIP::Item->new(
+        $item = NCIP::Item->new(
             { itemid => $item_id->textContent(), ils => $self->ils } );
         my ( $itemdata, $error ) = $item->itemdata();
         if ($error) {
index 52e14bd..749eb35 100644 (file)
@@ -26,7 +26,7 @@ use base qw(Net::Server::PreFork);
 
 =head1 NAME
   
-    NCIP::Configuration
+    NCIPServer
 
 =head1 SYNOPSIS