Skip to content

Commit 86bd66e

Browse files
authored
ENGCOM-3810: Issue #13612 Fixed. #20001
2 parents a9d69c4 + 80415b9 commit 86bd66e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Eav/Model/Entity/Attribute/Source/AbstractSource.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function getOptionText($value)
7373
}
7474
}
7575
// End
76-
if (isset($options[$value])) {
76+
if (is_scalar($value) && isset($options[$value])) {
7777
return $options[$value];
7878
}
7979
return false;

0 commit comments

Comments
 (0)