From 7e997ee7ee7df440f4b9b2e80fa200fc3b777fe5 Mon Sep 17 00:00:00 2001 From: Jeff Godin Date: Sun, 29 Apr 2012 19:49:41 -0400 Subject: [PATCH] Syntax error: $isbn should be $isbn_obj Missed a syntax error in AddedContent.pm: $isbn should be $isbn_obj Signed-off-by: Jeff Godin --- Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm b/Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm index 539cdd45b7..90a9de2418 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/WWW/AddedContent.pm @@ -126,7 +126,7 @@ sub handler { my @isbns = [map { my $isbn_obj = Business::ISBN->new($_); - return $isbn->as_string([]); + return $isbn_obj->as_string([]); } @raw_isbns]; $keyhash = { -- 2.11.0