File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
app/code/Magento/Widget/Model/Widget Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class Instance extends \Magento\Framework\Model\AbstractModel
34
34
35
35
const PRODUCT_LAYOUT_HANDLE = 'catalog_product_view ' ;
36
36
37
- const SINGLE_PRODUCT_LAYOUT_HANLDE = 'catalog_product_view_id_{{ID}} ' ;
37
+ const SINGLE_PRODUCT_LAYOUT_HANDLE = 'catalog_product_view_id_{{ID}} ' ;
38
38
39
39
const PRODUCT_TYPE_LAYOUT_HANDLE = 'catalog_product_view_type_{{TYPE}} ' ;
40
40
@@ -188,12 +188,12 @@ protected function _construct()
188
188
$ this ->_specificEntitiesLayoutHandles = [
189
189
'anchor_categories ' => self ::SINGLE_CATEGORY_LAYOUT_HANDLE ,
190
190
'notanchor_categories ' => self ::SINGLE_CATEGORY_LAYOUT_HANDLE ,
191
- 'all_products ' => self ::SINGLE_PRODUCT_LAYOUT_HANLDE ,
191
+ 'all_products ' => self ::SINGLE_PRODUCT_LAYOUT_HANDLE ,
192
192
];
193
193
foreach (array_keys ($ this ->_productType ->getTypes ()) as $ typeId ) {
194
194
$ layoutHandle = str_replace ('{{TYPE}} ' , $ typeId , self ::PRODUCT_TYPE_LAYOUT_HANDLE );
195
195
$ this ->_layoutHandles [$ typeId . '_products ' ] = $ layoutHandle ;
196
- $ this ->_specificEntitiesLayoutHandles [$ typeId . '_products ' ] = self ::SINGLE_PRODUCT_LAYOUT_HANLDE ;
196
+ $ this ->_specificEntitiesLayoutHandles [$ typeId . '_products ' ] = self ::SINGLE_PRODUCT_LAYOUT_HANDLE ;
197
197
}
198
198
}
199
199
You can’t perform that action at this time.
0 commit comments