[open-ils-commits] r16064 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Mar 30 16:28:27 EDT 2010


Author: miker
Date: 2010-03-30 16:28:21 -0400 (Tue, 30 Mar 2010)
New Revision: 16064

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm
Log:
return the whole blob for an undefined field key

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm	2010-03-30 18:52:05 UTC (rev 16063)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Actor/Container.pm	2010-03-30 20:28:21 UTC (rev 16064)
@@ -618,6 +618,7 @@
     } else {
 
         my $blob = $cache->get_cache($ses_key) or return undef;
+        return $blob if (!defined($field_key));
         return $blob->{$field_key};
     }
 }



More information about the open-ils-commits mailing list