Changed the error message from: There is no book with barcode: XXXXXX
authorfinlayt <finlayt>
Mon, 6 May 2002 04:30:37 +0000 (04:30 +0000)
committerfinlayt <finlayt>
Mon, 6 May 2002 04:30:37 +0000 (04:30 +0000)
to: No item with barcode: XXXXXXX

C4/Circulation/Circ2.pm

index 13fc206..9f5dd51 100755 (executable)
@@ -229,7 +229,7 @@ sub transferbook {
     my $branches = getbranches();
     my $iteminformation = getiteminformation(\%env,0, $barcode);
     if (not $iteminformation) {
-       $message = "<font color='red' size='+2'>There is no book with barcode: $barcode </font>";
+       $message = "<font color='red' size='+2'>No item with barcode: $barcode </font>";
        return (0, $message, 0);
     }
     my $fbr = $iteminformation->{'holdingbranch'};