-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1664 from magento-engcom/develop-prs
Public Pull Requests #11961 [Backport 2.3] #11898 - Change NL PostCode Pattern by @osrecio #11801 #6948: CatalogImportExport categoryProcessor does not support escaped delimiter by @serhii-balko #11888 Save background color correctly in images. by @raumatbel #11862 [Backport 2.3-develop] #11697 Theme: Added html node to page xml root, cause validation error by @adrian-martinez-interactiv4 Fixed Public Issues #11898 Zip code Netherlands should allow zipcode without space #6948 CatalogImportExport categoryProcessor does not support escaped delimiter #8799 Image brackground #11697 Theme: Added html node to page xml root, cause validation error
- Loading branch information
Showing
11 changed files
with
92 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
29 changes: 29 additions & 0 deletions
29
dev/tests/integration/testsuite/Magento/Catalog/_files/catalog_category_with_slash.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
$category = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(\Magento\Catalog\Model\Category::class); | ||
$category->isObjectNew(true); | ||
$category->setId( | ||
3331 | ||
)->setCreatedAt( | ||
'2017-06-23 09:50:07' | ||
)->setName( | ||
'Category with slash/ symbol' | ||
)->setParentId( | ||
2 | ||
)->setPath( | ||
'1/2/3331' | ||
)->setLevel( | ||
2 | ||
)->setAvailableSortBy( | ||
['position', 'name'] | ||
)->setDefaultSortBy( | ||
'name' | ||
)->setIsActive( | ||
true | ||
)->setPosition( | ||
1 | ||
)->save(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...agento/CatalogImportExport/Model/Import/_files/import_new_categories_custom_separator.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
sku,product_type,store_view_code,name,price,attribute_set_code,categories,product_websites | ||
simple1,simple,,"simple 2",25,Default,"Default Category/Category 1|Default Category/Category 2",base | ||
simple1,simple,,"simple 2",25,Default,"Default Category/Category 1|Default Category/Category\/ 2",base |
2 changes: 1 addition & 1 deletion
2
...gento/CatalogImportExport/Model/Import/_files/import_new_categories_default_separator.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
sku,product_type,store_view_code,name,price,attribute_set_code,categories,product_websites,url_key | ||
simple1,simple,,"simple 1",25,Default,"Default Category/Category 1,Default Category/Category 2",base,simple1-ds | ||
simple1,simple,,"simple 1",25,Default,"Default Category/Category 1,Default Category/Category\/ 2",base,simple1-ds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters