Skip to content

Commit

Permalink
Merge pull request #100 from magento-commerce/1.1.18
Browse files Browse the repository at this point in the history
1.1.18 Release
  • Loading branch information
katmoon authored Aug 12, 2022
2 parents 180402a + df8ce7b commit 7a3bd00
Show file tree
Hide file tree
Showing 16 changed files with 2,528 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "magento/quality-patches",
"description": "Provides quality patches for AdobeCommerce & Magento OpenSource",
"type": "magento2-component",
"version": "1.1.17",
"version": "1.1.18",
"license": "proprietary",
"repositories": {
"repo": {
Expand Down
2 changes: 1 addition & 1 deletion patches-info.json

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions patches/commerce/ACSD-45255_2.4.3-p1.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
diff --git a/vendor/magento/module-admin-gws/Plugin/CollectionFilter.php b/vendor/magento/module-admin-gws/Plugin/CollectionFilter.php
index f54dd685ed4..6390bc8a00c 100644
--- a/vendor/magento/module-admin-gws/Plugin/CollectionFilter.php
+++ b/vendor/magento/module-admin-gws/Plugin/CollectionFilter.php
@@ -97,8 +97,8 @@ class CollectionFilter
private function filterCollection(AbstractCollection $collection)
{
if (!$this->role->getIsAll() && !$collection->getFlag(self::FILTERED_FLAG_NAME)) {
- if (method_exists($collection, 'addStoreFilter')) {
- $collection->addStoreFilter($this->getStoreIds());
+ if (method_exists($collection, 'addStoresFilter')) {
+ $collection->addStoresFilter($this->getStoreIds());
$collection->setFlag(self::FILTERED_FLAG_NAME, true);
} elseif (isset($collection->getSelect()->getPart(Select::FROM)['main_table'])) {
$this->tableBasedFilter($collection);
Loading

0 comments on commit 7a3bd00

Please sign in to comment.