Skip to content

Commit 55029c9

Browse files
committed
ACP2E-1358, fixed static
1 parent 2eb09db commit 55029c9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

app/code/Magento/Eav/Model/Entity/AbstractEntity.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1546,7 +1546,10 @@ protected function _updateAttribute($object, $attribute, $valueId, $value)
15461546
{
15471547
$table = $attribute->getBackend()->getTable();
15481548
$connection = $this->getConnection();
1549-
$connection->update($table, ['value' => $this->_prepareValueForSave($value, $attribute)], 'value_id = ' . $valueId);
1549+
$connection->update($table,
1550+
['value' => $this->_prepareValueForSave($value, $attribute)],
1551+
'value_id = ' . $valueId
1552+
);
15501553

15511554
return $this;
15521555
}

0 commit comments

Comments
 (0)