From 1acee8531337d16dc6da72175ee5b91021a451a2 Mon Sep 17 00:00:00 2001 From: miker Date: Tue, 30 Mar 2010 20:28:21 +0000 Subject: [PATCH] return the whole blob for an undefined field key git-svn-id: svn://svn.open-ils.org/ILS/trunk@16064 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm index 79b9273179..9126ad824f 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm @@ -618,6 +618,7 @@ sub anon_cache { } else { my $blob = $cache->get_cache($ses_key) or return undef; + return $blob if (!defined($field_key)); return $blob->{$field_key}; } } -- 2.11.0