You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have used to getEavAttributes() function and I am not getting returned a full array if I have many rows with the same entity and attribute. The most I get in an array is 2 and then its getting overwritten with the next result as it itterate through on loadEavAttributes().
Any ideas?
The text was updated successfully, but these errors were encountered:
My solution has been the following:
line 538
if (!is_null($current = $this->attributes->itemAt($attribute)) && $current != $value)
{
$value = is_array($current) ? $current[] = $value : array($current, $value);
}
I have used to getEavAttributes() function and I am not getting returned a full array if I have many rows with the same entity and attribute. The most I get in an array is 2 and then its getting overwritten with the next result as it itterate through on loadEavAttributes().
Any ideas?
The text was updated successfully, but these errors were encountered: