Skip to content

Commit 9c4350c

Browse files
🔃 [EngCom] Public Pull Requests - 2.2-develop
Accepted Public Pull Requests: - #22069: [Backport] Add argument to show filter text in URL rewrite grid after click on back button (by @amol2jcommerce) - #22039: [Backport] Added custom_options file upload directory to .gitignore. (by @amol2jcommerce) - #21813: [Backport] #21734 Error in JS validation rule (by @kisroman) - #21118: [Backport] Fixed issue 20790 wishlist icons (by @amol2jcommerce) - #21892: [Backport] Advanced Search layout not proper (by @amol2jcommerce) - #19488: [Backport] Fix DHL Quotes for Domestic Shipments when Content Type is set to Non-Document (by @gwharton) Fixed GitHub Issues: - #21805: Filter in url rewrites table in backend isn't being remembered (reported by @hostep) has been fixed in #22069 by @amol2jcommerce in 2.2-develop branch Related commits: 1. d6c12e5 2. 646200a 3. 2a39dd3 4. c126f39 - #21734: Error in JS validation rule (reported by @avgust1111) has been fixed in #21813 by @kisroman in 2.2-develop branch Related commits: 1. 6bb24ef 2. 0add8b7 - #20790: Luma theme My Wish List page Edit and Remove icons consistency design improvement (reported by @abrarpathan19) has been fixed in #21118 by @amol2jcommerce in 2.2-develop branch Related commits: 1. b24df57 2. a353566 3. abc1d24 4. 330d202 - #20809: Advanced Search layout not proper (reported by @amol2jcommerce) has been fixed in #21892 by @amol2jcommerce in 2.2-develop branch Related commits: 1. 67b732c 2. af75c5a - #19485: DHL Shipping Quotes fail for Domestic Shipments when Content Mode is "Non Documents" (reported by @gwharton) has been fixed in #19488 by @gwharton in 2.2-develop branch Related commits: 1. e6b279b 2. ce7b560 3. 49e26db 4. a497c95 5. 5557b9d
2 parents db4e479 + 5742285 commit 9c4350c

File tree

20 files changed

+1205
-242
lines changed

20 files changed

+1205
-242
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ atlassian*
4949
/pub/media/import/*
5050
!/pub/media/import/.htaccess
5151
/pub/media/logo/*
52+
/pub/media/custom_options/*
53+
!/pub/media/custom_options/.htaccess
5254
/pub/media/theme/*
5355
/pub/media/theme_customization/*
5456
!/pub/media/theme_customization/.htaccess

app/code/Magento/Catalog/etc/adminhtml/system.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
<field id="grid_per_page_values" translate="label comment" type="text" sortOrder="2" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
5757
<label>Products per Page on Grid Allowed Values</label>
5858
<comment>Comma-separated.</comment>
59-
<validate>validate-per-page-value-list</validate>
59+
<validate>validate-per-page-value-list required-entry</validate>
6060
</field>
6161
<field id="grid_per_page" translate="label comment" type="text" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
6262
<label>Products per Page on Grid Default Value</label>
@@ -66,7 +66,7 @@
6666
<field id="list_per_page_values" translate="label comment" type="text" sortOrder="4" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
6767
<label>Products per Page on List Allowed Values</label>
6868
<comment>Comma-separated.</comment>
69-
<validate>validate-per-page-value-list</validate>
69+
<validate>validate-per-page-value-list required-entry</validate>
7070
</field>
7171
<field id="list_per_page" translate="label comment" type="text" sortOrder="5" showInDefault="1" showInWebsite="1" showInStore="1" canRestore="1">
7272
<label>Products per Page on List Default Value</label>

app/code/Magento/Dhl/Model/Carrier.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1968,8 +1968,6 @@ protected function isDutiable($origCountryId, $destCountryId)
19681968
{
19691969
$this->_checkDomesticStatus($origCountryId, $destCountryId);
19701970

1971-
return
1972-
self::DHL_CONTENT_TYPE_NON_DOC == $this->getConfigData('content_type')
1973-
|| !$this->_isDomestic;
1971+
return !$this->_isDomestic;
19741972
}
19751973
}

0 commit comments

Comments
 (0)