Skip to content

Commit

Permalink
MAGETWO-69728: Fixes layered navigation options being cached using th…
Browse files Browse the repository at this point in the history
…e wrong store id. magento#9873

 - Backwards compatibility improvements
  • Loading branch information
ishakhsuvarov committed Jun 9, 2017
1 parent bd65ced commit 58b4c7c
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ abstract class AbstractFrontend implements \Magento\Eav\Model\Entity\Attribute\F
* @param CacheInterface $cache
* @param $storeResolver @deprecated
* @param array $cacheTags
* @param StoreManagerInterface $storeManager
* @param Serializer $serializer
* @param StoreManagerInterface $storeManager
* @codeCoverageIgnore
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
*/
Expand All @@ -78,8 +78,8 @@ public function __construct(
CacheInterface $cache = null,
$storeResolver = null,
array $cacheTags = null,
StoreManagerInterface $storeManager = null,
Serializer $serializer = null
Serializer $serializer = null,
StoreManagerInterface $storeManager = null
) {
$this->_attrBooleanFactory = $attrBooleanFactory;
$this->cache = $cache ?: ObjectManager::getInstance()->get(CacheInterface::class);
Expand Down

0 comments on commit 58b4c7c

Please sign in to comment.