From c85292db5a5f5ec661c6978c2a0841783061b223 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 8 Sep 2016 12:19:30 +0000 Subject: [PATCH] Bug 17189 [QA Followup] - Missing $ on $key var for unsafe variant Signed-off-by: Kyle M Hall --- Koha/Cache.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Cache.pm b/Koha/Cache.pm index b966373..034d77b 100644 --- a/Koha/Cache.pm +++ b/Koha/Cache.pm @@ -331,7 +331,7 @@ sub get_from_cache { if ( exists $L1_cache{$self->{namespace}}{$key} ) { if (ref($L1_cache{$self->{namespace}}{$key})) { if ($unsafe) { - $L1_cache{$self->{namespace}}{$key}->{thawed} ||= $L1_decoder->decode($L1_cache{$self->{namespace}}{key}->{frozen}); + $L1_cache{$self->{namespace}}{$key}->{thawed} ||= $L1_decoder->decode($L1_cache{$self->{namespace}}{$key}->{frozen}); return $L1_cache{$self->{namespace}}{$key}->{thawed}; } else { return $L1_decoder->decode($L1_cache{$self->{namespace}}{$key}->{frozen}); -- 2.1.4