From 021f8a58209025bd8a797ef9882bfe0d011b8a1d Mon Sep 17 00:00:00 2001 From: Gordon Lesti Date: Tue, 13 Oct 2015 11:35:41 +0200 Subject: [PATCH] fix SELF self --- app/code/community/Lesti/Fpc/Helper/Data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/code/community/Lesti/Fpc/Helper/Data.php b/app/code/community/Lesti/Fpc/Helper/Data.php index 8bffe0d..dd49b81 100644 --- a/app/code/community/Lesti/Fpc/Helper/Data.php +++ b/app/code/community/Lesti/Fpc/Helper/Data.php @@ -176,7 +176,7 @@ protected function _getLayeredNavigationAttributes() } $cache = Mage::app()->getCache(); - $cacheId = SELF::CACHE_KEY_LAYERED_NAVIGATION_ATTRIBUTES.'_'.$filterableField; + $cacheId = self::CACHE_KEY_LAYERED_NAVIGATION_ATTRIBUTES.'_'.$filterableField; $cacheTags = array('FPC', SELF::CACHE_KEY_LAYERED_NAVIGATION_ATTRIBUTES); $layeredNavigationAttributesCache = $cache->load($cacheId);