File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
app/code/Magento/CatalogSearch/Block/Advanced Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -201,16 +201,16 @@ public function getCurrency($attribute)
201
201
public function getAttributeInputType ($ attribute )
202
202
{
203
203
$ dataType = $ attribute ->getBackend ()->getType ();
204
- $ imputType = $ attribute ->getFrontend ()->getInputType ();
205
- if ($ imputType == 'select ' || $ imputType == 'multiselect ' ) {
204
+ $ inputType = $ attribute ->getFrontend ()->getInputType ();
205
+ if ($ inputType == 'select ' || $ inputType == 'multiselect ' ) {
206
206
return 'select ' ;
207
207
}
208
208
209
- if ($ imputType == 'boolean ' ) {
209
+ if ($ inputType == 'boolean ' ) {
210
210
return 'yesno ' ;
211
211
}
212
212
213
- if ($ imputType == 'price ' ) {
213
+ if ($ inputType == 'price ' ) {
214
214
return 'price ' ;
215
215
}
216
216
You can’t perform that action at this time.
0 commit comments