Skip to content

Commit f482251

Browse files
author
Magento CICD
authored
merge magento/2.3-develop into magento-mpi/port-2572
2 parents 1ddc94b + b22e64d commit f482251

File tree

9 files changed

+1906
-1003
lines changed

9 files changed

+1906
-1003
lines changed

app/code/Magento/Customer/etc/webapi.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -200,12 +200,6 @@
200200
<resource ref="anonymous"/>
201201
</resources>
202202
</route>
203-
<route url="/V1/customers/resetPassword" method="POST">
204-
<service class="Magento\Customer\Api\AccountManagementInterface" method="resetPassword"/>
205-
<resources>
206-
<resource ref="anonymous"/>
207-
</resources>
208-
</route>
209203
<route url="/V1/customers/:customerId/confirm" method="GET">
210204
<service class="Magento\Customer\Api\AccountManagementInterface" method="getConfirmationStatus"/>
211205
<resources>

app/code/Magento/ImportExport/view/adminhtml/templates/import/form/before.phtml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -178,9 +178,13 @@ require([
178178
.loader('show');
179179
var form = jQuery('#edit_form')
180180
.one('invalid-form.validate', function(e){jQuery('body').loader('hide')});
181-
newActionUrl = (newActionUrl ? newActionUrl : form.attr('action')) +
182-
(form.attr('action').lastIndexOf('?') != -1 ? '&' : '?')+
183-
'form_key=' + encodeURIComponent(form.find('[name="form_key"]').val());
181+
182+
newActionUrl = (newActionUrl ? newActionUrl : form.attr('action'));
183+
if (newActionUrl.lastIndexOf('form_key') === -1) {
184+
newActionUrl = newActionUrl +
185+
(newActionUrl.lastIndexOf('?') !== -1 ? '&' : '?') +
186+
'form_key=' + encodeURIComponent(form.find('[name="form_key"]').val());
187+
}
184188

185189
form.trigger('save', [{
186190
action: newActionUrl,

app/code/Magento/Quote/Model/ResourceModel/Quote/Item/Collection.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,10 @@ private function addTierPriceData(ProductCollection $productCollection)
323323
*/
324324
private function removeItemsWithAbsentProducts()
325325
{
326+
if (count($this->_productIds) === 0) {
327+
return;
328+
}
329+
326330
$productCollection = $this->_productCollectionFactory->create()->addIdFilter($this->_productIds);
327331
$existingProductsIds = $productCollection->getAllIds();
328332
$absentProductsIds = array_diff($this->_productIds, $existingProductsIds);

app/code/Magento/Theme/etc/di.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
</type>
7070
<type name="Magento\Framework\App\Area">
7171
<arguments>
72-
<argument name="translator" xsi:type="object">Magento\Framework\Translate</argument>
72+
<argument name="translator" xsi:type="object">Magento\Framework\TranslateInterface</argument>
7373
<argument name="design" xsi:type="object">Magento\Theme\Model\Design\Proxy</argument>
7474
</arguments>
7575
</type>

app/design/adminhtml/Magento/backend/Magento_Backend/layout/default.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
-->
88
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
99
<head>
10+
<meta name="robots" content="NOINDEX,NOFOLLOW"/>
1011
<css src="jquery/jstree/themes/default/style.css"/>
1112
<css src="css/styles-old.css"/>
1213
<css src="css/styles.css"/>

app/design/frontend/Magento/blank/Magento_Sales/web/css/source/_email.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,8 @@
203203
text-align: center;
204204
}
205205

206-
.item-price {
206+
.item-price,
207+
.item-subtotal {
207208
text-align: right;
208209
}
209210

app/design/frontend/Magento/luma/Magento_Customer/web/css/source/_module.less

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@
224224
.column.main & {
225225
}
226226
}
227-
227+
display: block;
228228
margin-bottom: @indent__s;
229229
}
230230

app/design/frontend/Magento/luma/Magento_Sales/web/css/source/_email.less

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,8 @@
207207
text-align: center;
208208
}
209209

210-
.item-price {
210+
.item-price,
211+
.item-subtotal {
211212
text-align: right;
212213
}
213214

setup/performance-toolkit/benchmark.jmx

Lines changed: 1888 additions & 990 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)