Skip to content

Commit 1c9045e

Browse files
author
Alex Bomko
committed
Merge commit 'refs/pull/1368/head' of https://github.com/magento/magento2 into MAGETWO-38738
2 parents dcda524 + f4e2192 commit 1c9045e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
* Fixed an issue where first store could not be selected on frontend
113113
* Fixed an issue with performance toolkit category creation
114114
* Fixed an issue when columns 'Interval', 'Price Rule' had incorrect values in Coupon Usage report
115-
* Fixed an issue where fatal error occured on Abandoned Carts report grid
115+
* Fixed an issue where fatal error occurred on Abandoned Carts report grid
116116
* Fixed an issue where it was not possible to add product to shopping cart if Use Secure URLs in Frontend = Yes
117117
* Fixed an issue where email was not required during Guest Checkout
118118
* Fixed broken ability to skip reindex in `bin/magento setup:performance:generate-fixtures` command
@@ -2699,7 +2699,7 @@
26992699
* Fixed an issue with status and visibility settings of a related product on the backend
27002700
* Fixed an issue with unused DB indexes, which used resources, but did not contribute to higher performance
27012701
* Fixed an issue where it was possible to create a downloadable product without specifying a link or a file
2702-
* Fixed an issue where a fatal error occured when opening a fixed bundle product with custom options page on the frontend
2702+
* Fixed an issue where a fatal error occurred when opening a fixed bundle product with custom options page on the frontend
27032703
* Fixed an issue where the was a wrong config key for backend cataloginventory
27042704
* Processed GitHub requests:
27052705
* [#548] (https://github.com/magento/magento2/issues/548) -- Console installer doesn't checks filesystem permissions

app/code/Magento/Catalog/Block/Navigation.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -145,15 +145,15 @@ public function getCacheKeyInfo()
145145
$this->httpContext->getValue(Context::CONTEXT_GROUP),
146146
'template' => $this->getTemplate(),
147147
'name' => $this->getNameInLayout(),
148-
$this->getCurrenCategoryKey(),
148+
$this->getCurrentCategoryKey(),
149149
];
150150
$cacheId = $shortCacheId;
151151

152152
$shortCacheId = array_values($shortCacheId);
153153
$shortCacheId = implode('|', $shortCacheId);
154154
$shortCacheId = md5($shortCacheId);
155155

156-
$cacheId['category_path'] = $this->getCurrenCategoryKey();
156+
$cacheId['category_path'] = $this->getCurrentCategoryKey();
157157
$cacheId['short_cache_id'] = $shortCacheId;
158158

159159
return $cacheId;
@@ -164,7 +164,7 @@ public function getCacheKeyInfo()
164164
*
165165
* @return string
166166
*/
167-
public function getCurrenCategoryKey()
167+
public function getCurrentCategoryKey()
168168
{
169169
if (!$this->_currentCategoryKey) {
170170
$category = $this->_registry->registry('current_category');

0 commit comments

Comments
 (0)