From 506563f445889ab467c08e185205b0914a03facb Mon Sep 17 00:00:00 2001 From: erickson Date: Wed, 20 Feb 2008 00:31:18 +0000 Subject: [PATCH] fixed typo and return type error git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8793 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm index c386f224e6..e2b32db417 100644 --- a/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm +++ b/Open-ILS/src/perlmods/OpenILS/Utils/CStoreEditor.pm @@ -463,9 +463,9 @@ sub objects_allowed { push(@ids, 0+$_->{object_id}) for @$list; } - my %trim + my %trim; $trim{$_} = 1 for @ids; - return keys %trim; + return [ keys %trim ]; } -- 2.11.0