Skip to content

Commit

Permalink
#8236 FIX CMS blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagolima-bm committed Oct 27, 2017
1 parent 9adbca7 commit 49074ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/code/Magento/Cms/Model/ResourceModel/Block.php
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ public function getIsUniqueBlockToStores(AbstractModel $object)
if ($this->_storeManager->hasSingleStore()) {
$stores = [Store::DEFAULT_STORE_ID];
} else {
$stores = (array)$object->getData('stores');
$stores = (array)$object->getData('store_id');
}

$select = $this->getConnection()->select()
Expand Down

0 comments on commit 49074ff

Please sign in to comment.