File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
app/code/Magento/Catalog/Block Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 112
112
* Fixed an issue where first store could not be selected on frontend
113
113
* Fixed an issue with performance toolkit category creation
114
114
* 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
116
116
* Fixed an issue where it was not possible to add product to shopping cart if Use Secure URLs in Frontend = Yes
117
117
* Fixed an issue where email was not required during Guest Checkout
118
118
* Fixed broken ability to skip reindex in ` bin/magento setup:performance:generate-fixtures ` command
2699
2699
* Fixed an issue with status and visibility settings of a related product on the backend
2700
2700
* Fixed an issue with unused DB indexes, which used resources, but did not contribute to higher performance
2701
2701
* 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
2703
2703
* Fixed an issue where the was a wrong config key for backend cataloginventory
2704
2704
* Processed GitHub requests:
2705
2705
* [ #548 ] (https://github.com/magento/magento2/issues/548 ) -- Console installer doesn't checks filesystem permissions
Original file line number Diff line number Diff line change @@ -145,15 +145,15 @@ public function getCacheKeyInfo()
145
145
$ this ->httpContext ->getValue (Context::CONTEXT_GROUP ),
146
146
'template ' => $ this ->getTemplate (),
147
147
'name ' => $ this ->getNameInLayout (),
148
- $ this ->getCurrenCategoryKey (),
148
+ $ this ->getCurrentCategoryKey (),
149
149
];
150
150
$ cacheId = $ shortCacheId ;
151
151
152
152
$ shortCacheId = array_values ($ shortCacheId );
153
153
$ shortCacheId = implode ('| ' , $ shortCacheId );
154
154
$ shortCacheId = md5 ($ shortCacheId );
155
155
156
- $ cacheId ['category_path ' ] = $ this ->getCurrenCategoryKey ();
156
+ $ cacheId ['category_path ' ] = $ this ->getCurrentCategoryKey ();
157
157
$ cacheId ['short_cache_id ' ] = $ shortCacheId ;
158
158
159
159
return $ cacheId ;
@@ -164,7 +164,7 @@ public function getCacheKeyInfo()
164
164
*
165
165
* @return string
166
166
*/
167
- public function getCurrenCategoryKey ()
167
+ public function getCurrentCategoryKey ()
168
168
{
169
169
if (!$ this ->_currentCategoryKey ) {
170
170
$ category = $ this ->_registry ->registry ('current_category ' );
You can’t perform that action at this time.
0 commit comments