From: erickson Date: Wed, 20 Feb 2008 00:31:18 +0000 (+0000) Subject: fixed typo and return type error X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=506563f445889ab467c08e185205b0914a03facb;p=Evergreen.git fixed typo and return type error git-svn-id: svn://svn.open-ils.org/ILS/branches/acq-experiment@8793 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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 ]; }