From: miker Date: Tue, 30 Mar 2010 20:28:21 +0000 (+0000) Subject: return the whole blob for an undefined field key X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=1acee8531337d16dc6da72175ee5b91021a451a2;p=evergreen%2Fbjwebb.git 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 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm b/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm index 79b927317..9126ad824 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}; } }