Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit ec80b7b

Browse files
author
Stanislav Idolov
authored
🔃 [EngCom] Public Pull Requests - 2.3-develop
Accepted Public Pull Requests: - magento/magento2#13517: Stop cast of item_qty to int (by @pmclain) - magento/magento2#14268: Update jQuery migrate to 1.4.1 (by @jonathanKingston) - magento/magento2#14368: [Forwardport] Remove sjparkinson/static-review and other obsolete tools (by @rostyslav-hymon) Fixed GitHub Issues: - magento/magento2#14138: Outdated package after upgrade sjparkinson/static-review is abandoned (reported by @woshka) has been fixed in magento/magento2#14368 by @rostyslav-hymon in 2.3-develop branch Related commits: 1. 4853530 2. 632f89d
2 parents 160e368 + 33b3be3 commit ec80b7b

File tree

13 files changed

+288
-704
lines changed

13 files changed

+288
-704
lines changed

app/code/Magento/Checkout/Controller/Sidebar/UpdateItemQty.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __construct(
5555
public function execute()
5656
{
5757
$itemId = (int)$this->getRequest()->getParam('item_id');
58-
$itemQty = (int)$this->getRequest()->getParam('item_qty');
58+
$itemQty = $this->getRequest()->getParam('item_qty') * 1;
5959

6060
try {
6161
$this->sidebar->checkQuoteItem($itemId);

dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# Format: <componentType=module|library|theme|language|*> <componentName> <globPattern> or simply <globPattern>
22
* * /
3-
dev/tools/Magento
43
dev/tests
54
phpserver
65
pub

dev/tools/Magento/Tools/Layout/processors/addItemRenderer.xsl

Lines changed: 0 additions & 27 deletions
This file was deleted.

dev/tools/Magento/Tools/Layout/processors/addToParentGroup.xsl

Lines changed: 0 additions & 36 deletions
This file was deleted.

dev/tools/Magento/Tools/Layout/processors/headBlocks.xsl

Lines changed: 0 additions & 62 deletions
This file was deleted.

dev/tools/Magento/Tools/Layout/processors/layoutArguments.xsl

Lines changed: 0 additions & 150 deletions
This file was deleted.

dev/tools/Magento/Tools/Layout/processors/layoutGridContainer.xsl

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)