From 05ed312a129d3eb8b2d1765bb1f2667fe42a2e38 Mon Sep 17 00:00:00 2001 From: Bernardo Gonzalez Kriegel Date: Mon, 18 Feb 2013 22:24:29 -0300 Subject: [PATCH] Follow-up Bug 7387 - Add Template::Toolkit plugin to allow caching of includes Fixes tabulations. --- Koha/Template/Plugin/Cache.pm | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Koha/Template/Plugin/Cache.pm b/Koha/Template/Plugin/Cache.pm index 1bdb665..ed3dfce 100644 --- a/Koha/Template/Plugin/Cache.pm +++ b/Koha/Template/Plugin/Cache.pm @@ -37,7 +37,7 @@ sub new { } else { require Koha::Cache; - $cache = Koha::Cache->new( { 'cache_type' => 'memcached', 'cache_servers' => C4::Context->config('memcached_servers') }); + $cache = Koha::Cache->new( { 'cache_type' => 'memcached', 'cache_servers' => C4::Context->config('memcached_servers') }); } my $self = bless { CACHE => $cache, @@ -77,15 +77,15 @@ sub _cached_action { ':', ( $params->{template}, - map { "$_=$cache_keys->{$_}" } keys %{$cache_keys} + map { "$_=$cache_keys->{$_}" } keys %{$cache_keys} ) ); } my $result = $self->{CACHE}->get_from_cache($key); if ( !$result ) { - warn "here in not in cache"; - $result = $self->{CONTEXT}->$action( $params->{template} ); - $self->{CACHE}->set_in_cache( $key, $result, $params->{ttl} ); + warn "here in not in cache"; + $result = $self->{CONTEXT}->$action( $params->{template} ); + $self->{CACHE}->set_in_cache( $key, $result, $params->{ttl} ); } return $result; } -- 1.7.9.5