We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f652b8 commit 27c8c97Copy full SHA for 27c8c97
Checker/Catalog/Category/UrlPath.php
@@ -61,10 +61,8 @@ public function checkForIncorrectUrlPathAttributeValues(): array
61
$allCategories = $this->getAllVisibleCategoriesWithStoreId($storeId);
62
63
foreach ($allCategories as $category) {
64
- $isOverridden = $this->getIsUrlPathOverridden($category, $storeId);
65
-
66
// we don't care about non overwritten values
67
- if (!$isOverridden && $storeId !== Store::DEFAULT_STORE_ID) {
+ if ($storeId !== Store::DEFAULT_STORE_ID && !$this->getIsUrlPathOverridden($category, $storeId)) {
68
continue;
69
}
70
0 commit comments